Revert most of the conversion to Test::Fatal so we can redo it
[gitmo/Moose.git] / t / 040_type_constraints / 020_class_type_constraint.t
index 420c3bd..f91ddf5 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 
 use Test::More;
-use Test::Fatal;
+use Test::Exception;
 
 BEGIN {
     use_ok('Moose::Util::TypeConstraints');
@@ -24,8 +24,8 @@ BEGIN {
 
 }
 
-ok ! exception { class_type 'Beep' }, 'class_type keywork works';
-ok ! exception { class_type('Boop', message { "${_} is not a Boop" }) },
+lives_ok { class_type 'Beep' } 'class_type keywork works';
+lives_ok { class_type('Boop', message { "${_} is not a Boop" }) }
   'class_type keywork works with message';
 
 my $type = find_type_constraint("Foo");