aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/src/UriTests.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp
index 75693cc..a57dea1 100644
--- a/test/src/UriTests.cpp
+++ b/test/src/UriTests.cpp
@@ -688,6 +688,8 @@ TEST(UriTests, ReferenceResolution) {
{"http://example.com/", "/foo", "http://example.com/foo"},
{"http://example.com", "/foo/", "http://example.com/foo/"},
{"http://example.com/", "/foo/", "http://example.com/foo/"},
+ {"http://example.com/", "?foo", "http://example.com/?foo"},
+ {"http://example.com/", "#foo", "http://example.com/#foo"},
};
size_t index = 0;
for (const auto& testVector : testVectors) {