Redid conversion to Test::Fatal
[gitmo/Moose.git] / t / 600_todo_tests / 007_application_metarole_compat.t
index c254f51..b141e83 100644 (file)
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use Test::More;
-use Test::Exception;
+use Test::Fatal;
 
 BEGIN {
     {
@@ -52,7 +52,7 @@ BEGIN {
     package Child;
     use Moose -traits => 'Bar';
     { our $TODO; local $TODO = "no idea what's going on here";
-    ::lives_ok { extends 'Parent' };
+    ::is( ::exception { extends 'Parent' }, undef );
     }
 }