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

This commit is contained in:
Max Kellermann 2021-10-07 14:44:27 +02:00
parent 711c614528
commit 41a69027c2

View File

@ -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) {