Revert "better check for if add_class_attribute is present."
[gitmo/MooseX-AlwaysCoerce.git] / t / 02-mx-m-s.t
index 3501d34..9b36d77 100644 (file)
@@ -2,13 +2,14 @@
 use strict;
 use warnings;
 
-use Test::More;
-use Test::Exception;
+use Test::More tests => 3;
 
-eval { require MooseX::Method::Signatures };
-plan skip_all => "No MooseX::Method::Signatures" if $@;
+use Test::Requires {
+    'MooseX::Method::Signatures' => 0.01,
+};
 
-plan tests => 2;
+use Test::Fatal;
+use Test::NoWarnings;
 
 {
     package MyClass;
@@ -31,6 +32,10 @@ plan tests => 2;
 
 ok( (my $instance = MyClass->new), 'instance' );
 
-lives_and {
-    is $instance->foo(foo => "text", bar => 42), '4 42';
-} 'method called with coerced and uncoerced parameters';
+TODO: {
+    local $TODO = 'need rafl to help with implementation';
+
+    is( exception {
+        is $instance->foo(foo => "text", bar => 42), '4 42';
+    }, undef, 'method called with coerced and uncoerced parameters' );
+}