X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Ftags.t;h=4f9807be2c9f6745cf621f6d2591c3e42faea130;hb=cb5717efe306975114d1da44b1024ddb8b4e53cb;hp=b7857ca4bb25fb1bc6c7cbabeed3f5b38b8408f0;hpb=afe60e532ca8e2bd54a49ed048238710eff71d72;p=catagits%2FWeb-Simple.git diff --git a/t/tags.t b/t/tags.t index b7857ca..4f9807b 100644 --- a/t/tags.t +++ b/t/tags.t @@ -19,6 +19,11 @@ use Test::More qw(no_plan); use XML::Tags qw(bar); ; } + + sub quux { + use HTML::Tags; + , , "YAY", , ; + } } is( @@ -34,3 +39,9 @@ is( '', 'close tag ok' ); + +is( + join('', Foo::quux), + 'YAY', + 'HTML tags ok' +);