release 0.07
[gitmo/MooseX-AlwaysCoerce.git] / t / 01-basic.t
index bfe227c..f6d017f 100644 (file)
@@ -2,7 +2,9 @@
 use strict;
 use warnings;
 
-use Test::More tests => 7;
+use Test::More tests => 8;
+use Test::Exception;
+use Test::NoWarnings;
 
 {
     package MyClass;
@@ -26,26 +28,24 @@ use Test::More tests => 7;
     has uncoerced_attr => (is => 'rw', isa => 'Uncoerced');
 
     class_has uncoerced_class_attr => (is => 'rw', isa => 'Uncoerced');
+
+    class_has untyped_class_attr => (is => 'rw');
 }
 
 ok( (my $instance = MyClass->new), 'instance' );
 
-eval { $instance->foo('bar') };
-is $@, "", 'attribute coercion ran';
-
-eval { $instance->bar('baz') };
-is $@, "", 'class attribute coercion ran';
+lives_ok { $instance->foo('bar') } 'attribute coercion ran';
 
-eval { $instance->baz('quux') };
-ok( $@, 'class attribute coercion did not run with coerce => 0' );
+lives_ok { $instance->bar('baz') } 'class attribute coercion ran';
 
-undef $@;
+dies_ok { $instance->baz('quux') }
+    'class attribute coercion did not run with coerce => 0';
 
-eval { $instance->quux('mtfnpy') };
-ok( $@, 'attribute coercion did not run with coerce => 0' );
+dies_ok { $instance->quux('mtfnpy') }
+    'attribute coercion did not run with coerce => 0';
 
-eval { $instance->uncoerced_attr(10) };
-is $@, "", 'set attribute having type with no coercion and no coerce=0';
+lives_ok { $instance->uncoerced_attr(10) }
+    'set attribute having type with no coercion and no coerce=0';
 
-eval { $instance->uncoerced_class_attr(10) };
-is $@, "", 'set class attribute having type with no coercion and no coerce=0';
+lives_ok { $instance->uncoerced_class_attr(10) }
+    'set class attribute having type with no coercion and no coerce=0';