Redid conversion to Test::Fatal
[gitmo/Moose.git] / t / 050_metaclasses / 002_custom_attr_meta_as_role.t
index 6c0fbfe..0b1af53 100644 (file)
@@ -3,20 +3,20 @@
 use strict;
 use warnings;
 
-use Test::More tests => 2;
-use Test::Exception;
+use Test::More;
+use Test::Fatal;
 
-;
-
-lives_ok {
+is( exception {
     package MooseX::Attribute::Test;
     use Moose::Role;
-} 'creating custom attribute "metarole" is okay';
+}, undef, 'creating custom attribute "metarole" is okay' );
 
-lives_ok {
+is( exception {
     package Moose::Meta::Attribute::Custom::Test;
     use Moose;
-    
+
     extends 'Moose::Meta::Attribute';
     with 'MooseX::Attribute::Test';
-} 'custom attribute metaclass extending role is okay';
+}, undef, 'custom attribute metaclass extending role is okay' );
+
+done_testing;