Revert most of the conversion to Test::Fatal so we can redo it
[gitmo/Moose.git] / t / 100_bugs / 025_universal_methods_wrappable.t
index f44d3eb..8eea71a 100644 (file)
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::Fatal;
+use Test::Exception;
 use Test::More;
 
 {
@@ -22,7 +22,7 @@ use Test::More;
 
     local $TODO = 'UNIVERSAL methods should be wrappable';
 
-    ::ok ! ::exception { with 'FakeBar' }, 'applied role';
+    ::lives_ok { with 'FakeBar' } 'applied role';
 
     my $foo = Foo->new;
     ::isa_ok $foo, 'Bar';