The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#########################

use Test::More tests => 3;
BEGIN { use_ok 'HTML::BBCode'; }

#########################

use strict;

my $bbc = new HTML::BBCode({ no_html => 1});

my $text = "[color=<xss>]<xss>[/color]";
is($bbc->parse($text), '<span>&lt;xss&gt;</span>');

$text = "[url=<xss>]http:<xss>[/url]";
is($bbc->parse($text), '<a href="xss">http:&lt;xss&gt;</a>');