X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Ftags.t;h=91edf08dd90eb8a636ceef7734b1a128fa753d55;hb=b6863c585cd0ce5484be44f243c45f1dcf90fbfc;hp=4f9807be2c9f6745cf621f6d2591c3e42faea130;hpb=cb5717efe306975114d1da44b1024ddb8b4e53cb;p=catagits%2FWeb-Simple.git diff --git a/t/tags.t b/t/tags.t index 4f9807b..91edf08 100644 --- a/t/tags.t +++ b/t/tags.t @@ -24,10 +24,48 @@ use Test::More qw(no_plan); use HTML::Tags; , , "YAY", , ; } + + sub xquux { + use HTML::Tags; + , + ,,,,
,'x',,1,,
; + } + + sub fleem { + use XML::Tags qw(woo); + my $ent = 'one&two"four'; + ; + } + + 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 { + ; + } } is( - join(', ', Foo::foo()), + join(', ', XML::Tags::to_xml_string Foo::foo()), ', , ', 'open tags ok' ); @@ -35,13 +73,56 @@ is( ok(!eval { Foo::bar(); 1 }, 'Death on use of unimported tag'); is( - join(', ', Foo::baz()), + join(', ', XML::Tags::to_xml_string Foo::baz()), '', 'close tag ok' ); is( - join('', Foo::quux), + join('', HTML::Tags::to_html_string Foo::quux), 'YAY', 'HTML tags ok' ); + +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' +); + +is( + join('', XML::Tags::to_xml_string Foo::flaax), + 'one&two<three>fourone&twofour', + 'Escaping user data ok' +); + +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' +);