diff options
Diffstat (limited to 'tests')
-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("ϧ"), " "); ?> |