diff options
author | Simon McVittie <smcv@debian.org> | 2014-09-14 15:43:59 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2014-09-14 15:47:42 +0100 |
commit | 0490ead761c64ce91123d21bea4b5ab14980173e (patch) | |
tree | d87ba0592d6050b046e83313e65f7346ba06f6d4 /t | |
parent | 24a5dceb01e102d44b4294ae4ba73a082e0a71b6 (diff) | |
download | ikiwiki-0490ead761c64ce91123d21bea4b5ab14980173e.tar ikiwiki-0490ead761c64ce91123d21bea4b5ab14980173e.tar.gz |
extend rst test to cover a fixed bug
Diffstat (limited to 't')
-rwxr-xr-x | t/rst.t | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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*}); |