add a testcase for the weird markdown utf-8 crasher to make sure that
ikiwiki continues to work around itmaster
parent
0cd2cfb039
commit
bd1b505bc9
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/perl
|
||||
use warnings;
|
||||
use strict;
|
||||
use Test::More tests => 4;
|
||||
use Test::More tests => 5;
|
||||
use Encode;
|
||||
|
||||
BEGIN { use_ok("IkiWiki"); }
|
||||
|
@ -17,3 +17,5 @@ is(IkiWiki::htmlize(".mdwn", "foo\n\nbar\n"), "<p>foo</p>\n\n<p>bar</p>\n",
|
|||
is(IkiWiki::htmlize(".mdwn", IkiWiki::readfile("t/test1.mdwn")),
|
||||
Encode::decode_utf8(qq{<p><img src="../images/o.jpg" alt="o" title="ó" />\nóóóóó</p>\n}),
|
||||
"utf8; bug #373203");
|
||||
ok(IkiWiki::htmlize(".mdwn", IkiWiki::readfile("t/test2.mdwn")),
|
||||
"this file crashes markdown if it's fed in as decoded utf-8");
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<form>
|
||||
</form>
|
||||
<ul>
|
||||
<li>ş <--
|
||||
</ul>
|
Loading…
Reference in New Issue