Test for a more standard error from load_class
Yuval Kogman [Fri, 25 Sep 2009 19:48:18 +0000 (22:48 +0300)]
t/010_basics/002_require_superclasses.t

index 36859ca..ba210e4 100644 (file)
@@ -38,7 +38,8 @@ use Test::More tests => 5;
     use Moose;
 
     eval { extends 'No::Class'; };
-    ::ok($@, '... could not find the superclass (as expected)');
-    ::like($@, qr/^Could not load class \(No\:\:Class\) because \:/, '... and got the error we expected');
+    my $e = $@;
+    ::ok($e, '... could not find the superclass (as expected)');
+    ::like($e, qr{Can't locate No/Class\.pm in \@INC}, '... and got the error we expected');
 }