From: Matt S Trout Date: Sun, 8 Apr 2012 19:05:37 +0000 (+0000) Subject: fix test to handle defatalization X-Git-Tag: v1.003001~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bc2262ba79e706693def6ce1024b22f5c7451adf;hp=0d5633dd2c1d6f8d6eab9a710be10eacafb8b70c;p=p5sagit%2Fstrictures.git fix test to handle defatalization --- diff --git a/Changes b/Changes index 5dfa9e4..6d6f11c 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - fix test to handle defatalization +1.003000 - 2012-04-07 - try and run for any checkout t/ now we don't blow up the process - defatalize lack of extra testing modules - disable extra tests on perls <= 5.008003, things do not work there as diff --git a/t/strictures.t b/t/strictures.t index 5dd1953..de4b5c8 100644 --- a/t/strictures.t +++ b/t/strictures.t @@ -33,6 +33,13 @@ foreach my $idx (0 .. $#us) { SKIP: { skip 'Extra tests disabled on perls <= 5.008003', 1 if $] < 5.008004; + skip 'Not got all the modules to do this', 1 + unless eval { + require indirect; + require multidimensional; + require bareword::filehandles; + 1; + }; local $0 = 't/00load.t'; sub Foo::new { 1 } chdir("t/smells-of-vcs");