######################### use Test::More tests => 3; BEGIN { use_ok 'HTML::BBCode'; } ######################### use strict; my $bbc = new HTML::BBCode; isa_ok($bbc, 'HTML::BBCode', 'default'); my $text; is($bbc->parse($text), undef, "Empty input");