perl-YAML/perl-YAML-testmore054.patch
2006-05-17 19:14:32 +00:00

16 lines
390 B
Diff

--- t/20load.t~ 2005-03-31 05:18:43.000000000 +0300
+++ t/20load.t 2005-04-13 17:35:47.000000000 +0300
@@ -1,7 +1,11 @@
use lib 'lib', 't';
use TestChunks;
plan tests => number_of_tests;
-test_load;
+SKIP: {
+ Test::More::skip "This test hangs with Test::More < 0.54", number_of_tests
+ unless $Test::More::VERSION && $Test::More::VERSION >= 0.54;
+ test_load;
+};
__DATA__
===