aboutsummaryrefslogtreecommitdiff
path: root/t/crazy-badass-perl-bug.t
blob: 78f0b50112885d44e490925270058620f705c477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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.
use warnings;
use strict;
use Test::More tests => 103;
use Encode;

BEGIN { use_ok("IkiWiki"); }
BEGIN { use_ok("IkiWiki::Render"); }

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