Make error regex for native trait tests not expect a very specific path to the test...
Dave Rolsky [Sun, 6 Jun 2010 15:23:29 +0000 (10:23 -0500)]
t/070_native_traits/202_trait_array.t
t/070_native_traits/203_trait_hash.t

index e636719..91c6163 100644 (file)
@@ -280,7 +280,7 @@ for my $test (
     my ( $meth, @args ) = ref $test ? @{$test} : $test;
 
     throws_ok { $stuff->$meth(@args) }
-    qr{^\QThe options attribute does not contain an array reference at t/070_native_traits/202_trait_array.t line \E\d+},
+    qr{^\QThe options attribute does not contain an array reference at \E.+\Q202_trait_array.t line \E\d+},
         "$meth dies with useful error";
 }
 
index 7feff2b..c74512d 100644 (file)
@@ -198,7 +198,7 @@ for my $test (
     my ( $meth, @args ) = ref $test ? @{$test} : $test;
 
     throws_ok { $stuff->$meth(@args) }
-    qr{^\QThe options attribute does not contain a hash reference at t/070_native_traits/203_trait_hash.t line \E\d+},
+    qr{^\QThe options attribute does not contain a hash reference at \E.+\Q203_trait_hash.t line \E\d+},
         "$meth dies with useful error";
 }