diff options
Diffstat (limited to 'test/it_html.t')
-rwxr-xr-x | test/it_html.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/it_html.t b/test/it_html.t index 11e05dd..19b892c 100755 --- a/test/it_html.t +++ b/test/it_html.t @@ -296,6 +296,11 @@ is(it_html::entity_decode("ä"), "รค"); is(it_html::entity_decode("J"), "J"); is(it_html::entity_decode("J"), "J"); is(it_html::entity_decode("A"), "A"); +is(it_html::entity_decode('"'), '"'); +is(it_html::entity_decode('''), "'"); +is(it_html::entity_decode('<'), "<"); +is(it_html::entity_decode('>'), ">"); +is(it_html::entity_decode('&'), "&"); # tests for itools extension is(table(null), "<table></table>\n", "table() null argument"); |