diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-06-16 04:56:25 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-06-16 04:56:25 +0000 |
commit | bd1b505bc99588cf77784308be8e4969ed8a8d08 (patch) | |
tree | 8cd344cde51bf1c272ece8bde93a1256f44b2508 | |
parent | 0cd2cfb0393d52cadf162b4f1062033ea728eedb (diff) |
add a testcase for the weird markdown utf-8 crasher to make sure that
ikiwiki continues to work around it
-rwxr-xr-x | t/htmlize.t | 4 | ||||
-rw-r--r-- | t/test2.mdwn | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/t/htmlize.t b/t/htmlize.t index 465004bc1..742b6e2bc 100755 --- a/t/htmlize.t +++ b/t/htmlize.t @@ -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"); diff --git a/t/test2.mdwn b/t/test2.mdwn new file mode 100644 index 000000000..7e9b15f80 --- /dev/null +++ b/t/test2.mdwn @@ -0,0 +1,5 @@ +<form> +</form> +<ul> +<li>ş <-- +</ul> |