initial import
[HTML-AutoConvert.git] / t / 01-doc.t
1 #!perl
2
3 use Test::More tests => 2;
4
5 use HTML::AutoConvert;
6
7 my $c = new HTML::AutoConvert;
8
9 my $html = $c->html_convert('t/DiaryofaKillerCat.doc');
10
11 #match $html against something;
12 like( $html, qr/Chunky/, 'text is Chunky' );
13 like( $html, qr/Monkey/, 'text has Monkey' );
14