X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Ftags.t;h=91edf08dd90eb8a636ceef7734b1a128fa753d55;hb=75ad66d6b498a62a8ced06c4b4c404aa9533cf91;hp=af792cb610aabfadbf57ab8b21b4c84d520dcebd;hpb=9935bd6c7784067280343c2874336e3ca7c82000;p=catagits%2FWeb-Simple.git diff --git a/t/tags.t b/t/tags.t index af792cb..91edf08 100644 --- a/t/tags.t +++ b/t/tags.t @@ -25,18 +25,39 @@ use Test::More qw(no_plan); , , "YAY", , ; } + sub xquux { + use HTML::Tags; + , + ,,,,
,'x',,1,,
; + } + sub fleem { use XML::Tags qw(woo); - my $ent = "one&two"; + my $ent = 'one&two"four'; ; } -sub flaax { - use XML::Tags qw(woo); - my $data = "one&twofour"; - , $data, , - , \$data, ; -} + sub flaax { + use XML::Tags qw(woo); + my $data = "one&twofour"; + , $data, , + , \$data, ; + } + + sub HTML_comment { + use HTML::Tags; + ; + } + + sub PI { + use XML::Tags; + ; + } + + sub DTD { + use HTML::Tags; + + } sub globbery { ; @@ -64,8 +85,21 @@ is( ); is( + join('', HTML::Tags::to_html_string Foo::xquux), + '' . + '
x1
', + 'Conflicting HTML tags ok' +); + +is( + join('', XML::Tags::to_xml_string Foo::HTML_comment), + '', + 'HTML comment ok' +); + +is( join('', XML::Tags::to_xml_string Foo::fleem), - '', + '', 'Escaping ok' ); @@ -76,6 +110,18 @@ is( ); is( + join('', XML::Tags::to_xml_string Foo::PI), + '', + 'XML processing instruction' +); + +is( + join('', HTML::Tags::to_html_string Foo::DTD), + '', + 'DTD ok' +); + +is( join(', ', Foo::globbery), 't/globbery/one, t/globbery/two', 'real glob re-installed ok'