X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/bc6bef9c562f91032f38f65be61406cc498203b0..e1101d121f404fd1556029bec3b1c8f723bd9f51:/t/rst.t diff --git a/t/rst.t b/t/rst.t index 4e0c4b747..a72c4681c 100755 --- a/t/rst.t +++ b/t/rst.t @@ -8,7 +8,7 @@ BEGIN { } } -use Test::More tests => 2; +use Test::More tests => 3; BEGIN { use_ok("IkiWiki"); } @@ -19,4 +19,8 @@ $config{add_plugins}=[qw(rst)]; IkiWiki::loadplugins(); IkiWiki::checkconfig(); -ok(IkiWiki::htmlize("foo", "foo", "rst", "foo\n") =~ m{\s*

foo

\s*}); +like(IkiWiki::htmlize("foo", "foo", "rst", "foo\n"), qr{\s*

foo

\s*}); +# regression test for [[bugs/rst fails on file containing only a number]] +my $html = IkiWiki::htmlize("foo", "foo", "rst", "11"); +$html =~ s/<[^>]*>//g; +like($html, qr{\s*11\s*});