]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - t/rst.t
Add ikistrap plugin for ikistrap theme.
[git.ikiwiki.info.git] / t / rst.t
diff --git a/t/rst.t b/t/rst.t
index 4e0c4b74775842cc930aca7c63dd501a34993e64..7908c0fb2a0d780d3bb2b53155f39d77f3bf1186 100755 (executable)
--- a/t/rst.t
+++ b/t/rst.t
@@ -3,12 +3,12 @@ use warnings;
 use strict;
 
 BEGIN {
-       if (system("python -c 'import docutils.core'") != 0) {
+       if (system("python3 -c 'import docutils.core'") != 0) {
                eval 'use Test::More skip_all => "docutils not available"';
        }
 }
 
-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*});