# Test the 'un' methods.
my
$text
=
"This <i>isn't</i> "fun"..."
;
is(html_unmarkup(
$text
),
"This isn't "fun"..."
,
"HTML Unmarkup"
);
is(html_unescape(
$text
),
'This isn\'t "fun"...'
,
"HTML Unescape"
);
# Test escaping.
is(html_escape(
"<>&"
),
"<>&"
,
"Escaping text"
);
# Test HTML.
is(html_tag(TR,
NOWRAP
=>
undef
),
"<TR NOWRAP>"
,
"HTML 1"
);