summaryrefslogtreecommitdiff
path: root/cpan/CGI/t/unescapeHTML.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/CGI/t/unescapeHTML.t')
-rw-r--r--cpan/CGI/t/unescapeHTML.t12
1 files changed, 0 insertions, 12 deletions
diff --git a/cpan/CGI/t/unescapeHTML.t b/cpan/CGI/t/unescapeHTML.t
deleted file mode 100644
index 73bb57ff45..0000000000
--- a/cpan/CGI/t/unescapeHTML.t
+++ /dev/null
@@ -1,12 +0,0 @@
-use Test::More tests => 6;
-use CGI 'unescapeHTML';
-
-is( unescapeHTML( '&'), '&', 'unescapeHTML: &');
-is( unescapeHTML( '"'), '"', 'unescapeHTML: "');
-is( unescapeHTML( '&#60;'), '<', 'unescapeHTML: < (using a numbered sequence)');
-is( unescapeHTML( 'Bob & Tom went to the store; Where did you go?'),
- 'Bob & Tom went to the store; Where did you go?', 'unescapeHTML: a case where &...; should not be escaped.');
-is( unescapeHTML( 'This_string_contains_both_escaped_&_unescaped_&lt;entities&gt;'),
- 'This_string_contains_both_escaped_&_unescaped_<entities>', 'unescapeHTML: partially-escaped string.');
-is( unescapeHTML( 'This escaped string kind of looks like it has an escaped entity &x; it does not'),
- 'This escaped string kind of looks like it has an escaped entity &x; it does not', 'unescapeHTML: Another case where &...; should not be escaped.');