We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d5e23 commit cb79642Copy full SHA for cb79642
tests/testthat/test-url.R
@@ -10,16 +10,16 @@ test_that("url_absolute", {
10
})
11
12
test_that("url_relative", {
13
+ # The behavior of libxml2 with relative paths is fragile so we skip this test
14
+ skip("libxml2-dependent")
15
16
expect_equal(
17
url_relative("http://hadley.nz/a/c", "http://hadley.nz"),
18
"/a/c")
19
- # The behavior of libxml2 with relative paths is fragile so we skip this
- # test
20
- # expect_equal(
21
- # url_relative("http://hadley.nz/a/c", "http://hadley.nz/"),
22
- # "a/c")
+ expect_equal(
+ url_relative("http://hadley.nz/a/c", "http://hadley.nz/"),
+ "a/c")
23
24
25
url_relative("http://hadley.nz/a/c", "http://hadley.nz/a/b"),
0 commit comments