-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#135 use relative path instead of absolute full path for write to disk
change made in make_http_interaction method within the Cassette class we were using normalizePath, leading to a full path which only worked on the machine the test/fixture/file was originally run/created on no longer normalizing path
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ Description: Record test suite 'HTTP' requests and replays them during | |
real 'HTTP' responses on disk in 'cassettes'. Subsequent 'HTTP' requests | ||
matching any previous requests in the same 'cassette' use a cached | ||
'HTTP' response. | ||
Version: 0.5.0.91 | ||
Version: 0.5.0.92 | ||
Authors@R: c(person("Scott", "Chamberlain", role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID="0000-0003-1444-9135")), | ||
|
@@ -26,7 +26,7 @@ Roxygen: list(markdown = TRUE) | |
Imports: | ||
crul (>= 0.8.4), | ||
httr, | ||
webmockr (>= 0.6.0), | ||
webmockr (>= 0.6.0.92), | ||
urltools, | ||
yaml, | ||
R6, | ||
|
@@ -42,6 +42,7 @@ Suggests: | |
crayon, | ||
cli, | ||
curl | ||
Remotes: ropensci/webmockr | ||
RoxygenNote: 7.1.0 | ||
X-schema.org-applicationCategory: Web | ||
X-schema.org-keywords: http, https, API, web-services, curl, mock, mocking, http-mocking, testing, testing-tools, tdd | ||
|
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