Turn positive test for wrong behaviour into a TODO test for right behaviour

We don't want ikiwiki's tests to stop passing when
Text::Textile is fixed.
master
Simon McVittie 2015-01-06 00:23:33 +00:00
parent bca1f16385
commit 4315581f31
1 changed files with 5 additions and 2 deletions

View File

@ -25,6 +25,9 @@ subtest 'Text::Textile apparently double-escapes HTML entities in hrefs' => sub
chomp(my $txtl_html = IkiWiki::Plugin::textile::htmlize(
content => qq{"$text":$href},
));
isnt($txtl_html, $good);
is($txtl_html, q{<p><a href="https://en.wikipedia.org/wiki/G&amp;ouml;del,_Escher,_Bach">G&ouml;del, Escher, Bach</a></p>});
TODO: {
local $TODO = "Text::Textile double-escapes the href";
is($txtl_html, $good);
isnt($txtl_html, q{<p><a href="https://en.wikipedia.org/wiki/G&amp;ouml;del,_Escher,_Bach">G&ouml;del, Escher, Bach</a></p>});
}
};