convert all uses of Test::Exception to Test::Fatal.
[gitmo/Class-MOP.git] / t / 013_add_attribute_alternate.t
index 4cfb338..b40fc8f 100644 (file)
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 
 use Test::More;
-use Test::Exception;
+use Test::Fatal;
 
 use Class::MOP;
 
@@ -69,9 +69,9 @@ is($point->y, 42, '... the y attribute was set properly with the accessor');
 
 is($point->x, 2, '... the x attribute was initialized correctly through the metaobject');
 
-dies_ok {
+ok exception {
     $point->x(42);
-} '... cannot write to a read-only accessor';
+}, '... cannot write to a read-only accessor';
 is($point->x, 2, '... the x attribute was not altered');
 
 $point->clear();