summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorUrban Müller2010-04-22 16:27:36 +0000
committerUrban Müller2010-04-22 16:27:36 +0000
commit6c544459fd980f8bbb23c7da63e52039d1af0b9f (patch)
tree1eb67ce958a46dff0c3d7d4e4b82e443a4fd70a5 /tests
parent66baddc401b100a5eb93d337135b798e957b848b (diff)
downloaditools-6c544459fd980f8bbb23c7da63e52039d1af0b9f.tar.gz
itools-6c544459fd980f8bbb23c7da63e52039d1af0b9f.tar.bz2
itools-6c544459fd980f8bbb23c7da63e52039d1af0b9f.zip
entity decoder; urlencoding of user in U()
Diffstat (limited to 'tests')
-rwxr-xr-xtests/it_html.t8
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("ϧ"), " ");
?>