summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorUrban Müller2022-10-25 15:51:10 +0200
committerUrban Müller2022-10-25 15:51:10 +0200
commitcb55bfaf566ef14c41024c5441b8c2425a212578 (patch)
tree0a2373519ad0e1cded726486bff83e7a2c723be7 /test
parent53e71626424285dbed893ee615c98fa378c30b19 (diff)
downloaditools-cb55bfaf566ef14c41024c5441b8c2425a212578.tar.gz
itools-cb55bfaf566ef14c41024c5441b8c2425a212578.tar.bz2
itools-cb55bfaf566ef14c41024c5441b8c2425a212578.zip
be utf8 safe
Diffstat (limited to 'test')
-rwxr-xr-xtest/it_url.t1
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"]);