Commit 41a69027 authored by Max Kellermann's avatar Max Kellermann

test/util/TestUriRelative: add failing test for "./" prefix

parent 711c6145
......@@ -87,6 +87,7 @@ TEST(UriRelative, ApplyRelative)
{ "../foo", "http://localhost/", "" },
{ "../foo", "http://localhost", "" },
{ ".", "http://localhost", "http://localhost/" },
{ "./foo", "http://localhost", "http://localhost/foo" },
};
for (const auto &i : tests) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment