ikiwiki/t/crazy-badass-perl-bug.t

19 lines
551 B
Perl
Raw Normal View History

2006-07-02 05:54:12 +02:00
#!/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 => 102;
2006-07-02 05:54:12 +02:00
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", "mdwn", readfile("t/test1.mdwn")));
ok(IkiWiki::htmlize("foo", "mdwn", readfile("t/test3.mdwn")),
2006-07-02 05:54:12 +02:00
"wtf?") for 1..100;