convert all uses of Test::Exception to Test::Fatal.
[gitmo/Moose.git] / t / 050_metaclasses / 003_moose_w_metaclass.t
index 2a880d9..d6810c3 100644 (file)
@@ -3,9 +3,8 @@
 use strict;
 use warnings;
 
-use Test::More tests => 4;
-use Test::Exception;
-
+use Test::More;
+use Test::Fatal;
 
 
 =pod
@@ -54,3 +53,5 @@ isa_ok(Foo->meta, 'Foo::Meta');
         qr/^Bar already has a metaclass, but it does not inherit Moose::Meta::Class/,
         '... got the right error too');
 }
+
+done_testing;