diff options
Diffstat (limited to 'test/it_url.t')
-rwxr-xr-x | test/it_url.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/it_url.t b/test/it_url.t index 360b971..d2bb653 100755 --- a/test/it_url.t +++ b/test/it_url.t @@ -340,3 +340,4 @@ handle_server( is(it_url::parse("/foo"), ["/foo"], "it_url::parse path only"); is(it_url::parse("/foo?"), ["/foo"], "it_url::parse empty parameter"); is(it_url::parse("/foo?bar=baz&qux=quux"), ["/foo", 'bar' => "baz", 'qux' => "quux"], "it_url::parse parameters"); +is(it_url::parse("/foo?b%E4r=b%E4z"), ["/foo", 'bär' => "bäz"]); |