diff options
author | Urban Müller | 2010-04-22 16:27:36 +0000 |
---|---|---|
committer | Urban Müller | 2010-04-22 16:27:36 +0000 |
commit | 6c544459fd980f8bbb23c7da63e52039d1af0b9f (patch) | |
tree | 1eb67ce958a46dff0c3d7d4e4b82e443a4fd70a5 /tests/it_html.t | |
parent | 66baddc401b100a5eb93d337135b798e957b848b (diff) | |
download | itools-6c544459fd980f8bbb23c7da63e52039d1af0b9f.tar.gz itools-6c544459fd980f8bbb23c7da63e52039d1af0b9f.tar.bz2 itools-6c544459fd980f8bbb23c7da63e52039d1af0b9f.zip |
entity decoder; urlencoding of user in U()
Diffstat (limited to 'tests/it_html.t')
-rwxr-xr-x | tests/it_html.t | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/it_html.t b/tests/it_html.t index 0a3f4eb..0def431 100755 --- a/tests/it_html.t +++ b/tests/it_html.t @@ -148,4 +148,12 @@ is( 'a/b', 'U() converting of \ to /' ); + +is(it_html::entity_decode("ä"), "ä"); +is(it_html::entity_decode("’"), "'"); +is(it_html::entity_decode("J"), "J"); +is(it_html::entity_decode("J"), "J"); +is(it_html::entity_decode("࿿"), " "); +is(it_html::entity_decode("A"), "A"); +is(it_html::entity_decode("ϧ"), " "); ?> |