Fix test failures when user does not have C::Method::Modifiers(::Fast) installed
Joel Bernstein [Fri, 10 Apr 2009 21:04:00 +0000 (22:04 +0100)]
t/000-recipes/002_schwartz_tutorial.t
t/030_roles/003_apply_role.t
t/030_roles/019_build.t

index cad54b4..c23715e 100755 (executable)
 
 use strict;
 use warnings;
+use Test::More;
+
+BEGIN {
+    plan skip_all => 
+            "This test requires Class::Method::Modifiers or Class::Method::Modifiers::Fast" 
+        unless eval { 
+            require Class::Method::Modifiers::Fast;
+        } or   eval {
+            require Class::Method::Modifiers;
+        };
+}
 
 # functions to capture the output of the tutorial
 our $DUMMY_STDOUT = "";
@@ -105,7 +116,7 @@ no Mouse;
 ######################################################################
 # Now the tests
 package main;
-use Test::More tests => 5;
+plan tests => 5;
 
 #use Horse;
 my $talking = Horse->new(name => 'Mr. Ed');
index 1ab9f3f..3aaee4f 100755 (executable)
@@ -2,8 +2,18 @@
 
 use strict;
 use warnings;
+use Test::More;
+BEGIN {
+    plan skip_all => 
+            "This test requires Class::Method::Modifiers or Class::Method::Modifiers::Fast" 
+        unless eval { 
+            require Class::Method::Modifiers::Fast;
+        } or   eval {
+            require Class::Method::Modifiers;
+        };
+}
 
-use Test::More tests => 86;
+plan tests => 86;
 use Test::Exception;
 
 {
index f76ea5a..8d3a4a4 100644 (file)
@@ -1,7 +1,19 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More tests => 6;
+use Test::More;
+BEGIN {
+    plan skip_all => 
+            "This test requires Class::Method::Modifiers or Class::Method::Modifiers::Fast" 
+        unless eval { 
+            require Class::Method::Modifiers::Fast;
+        } or   eval {
+            require Class::Method::Modifiers;
+        };
+}
+
+plan tests => 6;
+
 
 # this test script ensures that my idiom of:
 # role: sub BUILD, after BUILD