aboutsummaryrefslogtreecommitdiff
path: root/t/crazy-badass-perl-bug.t
blob: 328a979c2a7158dbfa3d98ea3ea49f2405f71c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl
# DO NOT CHANGE ANYTHING IN THIS FILE.
# THe crazy bug reproduced here will go away if any of the calls
# to htmlize are changed.
# Note: This was http://bugs.debian.org/376329 , and was fixed in 
# perl 5.14.
use warnings;
use strict;
use Test::More tests => 102;
use Encode;

BEGIN { use_ok("IkiWiki"); }

# Initialize htmlscrubber plugin
%config=IkiWiki::defaultconfig();
$config{srcdir}=$config{destdir}="/dev/null";
IkiWiki::loadplugins(); IkiWiki::checkconfig();
ok(IkiWiki::htmlize("foo", "foo", "mdwn", readfile("t/test1.mdwn")));
ok(IkiWiki::htmlize("foo", "foo", "mdwn", readfile("t/test3.mdwn")),
	"wtf?") for 1..100;