-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fail if
system.file()
is supplied path starting with inst
Closes #104
- Loading branch information
Showing
4 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# system.file() fails if path starts with `inst` (#104) | ||
|
||
Code | ||
(expect_error(shim_system.file("inst/WORDLIST", package = "pkgload", mustWork = TRUE)) | ||
) | ||
Output | ||
<error/rlang_error> | ||
Error in `shim_system.file()`: | ||
! Paths can't start with `inst` | ||
i Files in `inst` are installed at top-level. | ||
Code | ||
(expect_error(shim_system.file("inst", "WORDLIST", package = "pkgload", | ||
mustWork = TRUE))) | ||
Output | ||
<error/rlang_error> | ||
Error in `shim_system.file()`: | ||
! Paths can't start with `inst` | ||
i Files in `inst` are installed at top-level. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters