diff options
Diffstat (limited to 'test/lua/unit/url.lua')
-rw-r--r-- | test/lua/unit/url.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lua/unit/url.lua b/test/lua/unit/url.lua index 97eda91c6..40d684bfc 100644 --- a/test/lua/unit/url.lua +++ b/test/lua/unit/url.lua @@ -133,6 +133,9 @@ context("URL check functions", function() {"http://hehe。example。com#test", true, { host = 'hehe.example.com', fragment = 'test' }}, + {"http:////$%^&****((@example.org//#f@f", true, { + user = '$%^&****((', host = 'example.org', fragment = 'f@f' + }}, } -- Some cases from https://code.google.com/p/google-url/source/browse/trunk/src/url_canon_unittest.cc |