From bd1b505bc99588cf77784308be8e4969ed8a8d08 Mon Sep 17 00:00:00 2001 From: joey Date: Fri, 16 Jun 2006 04:56:25 +0000 Subject: add a testcase for the weird markdown utf-8 crasher to make sure that ikiwiki continues to work around it --- t/htmlize.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 't/htmlize.t') 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"), "

foo

\n\n

bar

\n", is(IkiWiki::htmlize(".mdwn", IkiWiki::readfile("t/test1.mdwn")), Encode::decode_utf8(qq{

o\nóóóóó

\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"); -- cgit v1.2.3