diff options
author | Urban Müller | 2022-10-25 15:51:10 +0200 |
---|---|---|
committer | Urban Müller | 2022-10-25 15:51:10 +0200 |
commit | cb55bfaf566ef14c41024c5441b8c2425a212578 (patch) | |
tree | 0a2373519ad0e1cded726486bff83e7a2c723be7 /test/it_url.t | |
parent | 53e71626424285dbed893ee615c98fa378c30b19 (diff) | |
download | itools-cb55bfaf566ef14c41024c5441b8c2425a212578.tar.gz itools-cb55bfaf566ef14c41024c5441b8c2425a212578.tar.bz2 itools-cb55bfaf566ef14c41024c5441b8c2425a212578.zip |
be utf8 safe
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"]); |