From 4315581f31498c7c791fab2b251359c99533760f Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 6 Jan 2015 00:23:33 +0000 Subject: [PATCH] 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. --- t/textile-double-escape-bug.t | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/t/textile-double-escape-bug.t b/t/textile-double-escape-bug.t index fe73f331b..607706be4 100755 --- a/t/textile-double-escape-bug.t +++ b/t/textile-double-escape-bug.t @@ -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{

Gödel, Escher, Bach

}); + TODO: { + local $TODO = "Text::Textile double-escapes the href"; + is($txtl_html, $good); + isnt($txtl_html, q{

Gödel, Escher, Bach

}); + } }; -- 2.45.0