######################### use Test::More tests => 3; BEGIN { use_ok 'HTML::BBCode'; } ######################### use strict; my $bbc = new HTML::BBCode({ no_html => 1}); my $text = "[color=][/color]"; is($bbc->parse($text), '<xss>'); $text = "[url=]http:[/url]"; is($bbc->parse($text), 'http:<xss>');