Fix for 5.10/Carp 1.08 upwards. Ugh
Ash Berlin [Thu, 6 Mar 2008 01:00:41 +0000 (01:00 +0000)]
Changes
lib/Class/C3/Componentised.pm
t/01-basic.t

diff --git a/Changes b/Changes
index d69377d..dfb4c36 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Class-C3-Componentised
 
+1.0003    5 Mar 2008
+        Fix tests on perl 5.10.0
+
 1.0002    4 Mar 2008 
         Make tests more resilient
 
index 1cbbe13..ed0ac41 100644 (file)
@@ -44,7 +44,7 @@ use Class::C3;
 use Class::Inspector;
 use Carp;
 
-our $VERSION = 1.0001;
+our $VERSION = 1.0003;
 
 =head2 load_components( @comps )
 
index ca06d35..8c3d5cb 100644 (file)
@@ -16,7 +16,8 @@ MyModule->load_components('Foo');
 
 # Clear down inc so ppl dont mess us up with installing modules that we
 # expect not to exist
-@INC = ();
+#@INC = ();
+# This breaks Carp1.08/perl 5.10.0; bah
 
 throws_ok { MyModule->load_components('+ClassC3ComponentFooThatShouldntExist'); } qr/^Can't locate ClassC3ComponentFooThatShouldntExist.pm in \@INC/;