#!/usr/bin/perl use strict; use warnings; use Test::More 'no_plan'; # tests => 6; use Foorum::Formatter qw/filter_format/; my $text = < 'ubb' } ); like( $html, qr/inlove.gif/, 'emot convert OK' ); like( $html, qr/\ 'ubb' } ); is( $html, qq~CatalystX::Foorum
\n~, 'CPAN URL OK' ); # test breakline $html = filter_format( "a\nb\n", { format => 'ubb' } ); is( $html, "a
\nb
\n", 'breakline OK' ); # test video|flash $text = < 'ubb' } ); is( $html, qq~



~, '[video] [flash] [music] OK' ); is( filter_format( '[color=blue" onmouseover="alert:XSS"]test[/color]', { format => 'ubb' } ), 'test', 'stripscripts enabled' ); 1;