convert all uses of Test::Exception to Test::Fatal.
[gitmo/Moose.git] / t / 050_metaclasses / 021_export_with_prototype.t
index 6c8f5e2..c84f6d0 100644 (file)
@@ -3,20 +3,20 @@ package MyExporter::User;
 use MyExporter;
 
 use Test::More;
-use Test::Exception;
+use Test::Fatal;
 
-lives_and {
+ok ! exception {
     with_prototype {
         my $caller = caller(0);
         is($caller, 'MyExporter', "With_caller prototype code gets called from MyMooseX");
     };
-} "check function with prototype";
+}, "check function with prototype";
 
-lives_and {
+ok ! exception {
     as_is_prototype {
         my $caller = caller(0);
         is($caller, 'MyExporter', "As-is prototype code gets called from MyMooseX");
     };
-} "check function with prototype";
+}, "check function with prototype";
 
 done_testing;