fix test to handle defatalization
Matt S Trout [Sun, 8 Apr 2012 19:05:37 +0000 (19:05 +0000)]
Changes
t/strictures.t

diff --git a/Changes b/Changes
index 5dfa9e4..6d6f11c 100644 (file)
--- 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
index 5dd1953..de4b5c8 100644 (file)
@@ -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");