extend rst test to cover a fixed bug

master
Simon McVittie 2014-09-14 15:43:59 +01:00
parent 24a5dceb01
commit 0490ead761
2 changed files with 8 additions and 2 deletions

View File

@ -27,3 +27,5 @@ throwing code..):
> On second thought, this was a bug in ikiwiki, it should be transmitting
> that as a string. Fixed in external.pm --[[Joey]]
>> [[done]] a while ago, then. I've added a regression test now. --[[smcv]]

View File

@ -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*<p>foo</p>\s*});
like(IkiWiki::htmlize("foo", "foo", "rst", "foo\n"), qr{\s*<p>foo</p>\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*});