1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# $Id$
use Test::More tests => 3;
use HTML::FormatText::WithLinks;
my $html = new_html();
my $f = HTML::FormatText::WithLinks->new( leftmargin => 4 );
ok($f, 'object created');
my $text = $f->parse($html);
my $correct_text = qq! This is a mail of some sort with a [1]link and some more text here.
1. http://example.com/
!;
ok($text, 'html formatted');
is($text, $correct_text, 'html correctly formatted');
sub new_html {
return qq(This is a mail of some sort with a <a href="http://example.com/">link</a> and some more text here.);
}
|