| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 
 | Description: mark output() test as TODO
 it relies on hash order, which doesn't work since perl 5.17
Origin: vendor
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=88004
Bug-Debian: http://bugs.debian.org/720021
 http://bugs.debian.org/752987
Forwarded: no, it's obvious that the test should be removed
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2014-07-14
--- a/t/020_output.t
+++ b/t/020_output.t
@@ -66,8 +66,12 @@
 # only the parse() test.  The only justification of it is 
 # that we want to test output() seperate from parse(). 
 # 
+TODO: {
+local $TODO = "output test is fragile and relies on hash order";
+
 ok( $tmpl->output() eq $expected_output, 
 	"Output is as expected" );
+}
 
 TODO: {
 local $TODO = "file handle test is buggy";
 |