remove unneeded shebangs
[gitmo/MooseX-AlwaysCoerce.git] / t / 02-mx-m-s.t
index e79bac8..6b509c0 100644 (file)
@@ -1,24 +1,14 @@
-#!/usr/bin/env perl
 use strict;
 use warnings;
 
 use Test::More;
 
-BEGIN {
-    if (eval { require MooseX::Method::Signatures }) {
-        plan tests => 3;
-    } else {
-        plan skip_all => 'This test needs MooseX::Method::Signatures';
-    }
-}
-
-use Test::Exception;
-use Test::NoWarnings;
-
 {
     package MyClass;
     use Moose;
-    use MooseX::Method::Signatures;
+    use Test::Requires {
+        'MooseX::Method::Signatures' => 0.01,
+    };
     use MooseX::AlwaysCoerce;
     use Moose::Util::TypeConstraints;
 
@@ -34,12 +24,17 @@ use Test::NoWarnings;
     }
 }
 
+use Test::Fatal;
+use Test::NoWarnings 1.04 ':early';
+plan tests => 4;
+
 ok( (my $instance = MyClass->new), 'instance' );
 
 TODO: {
     local $TODO = 'need rafl to help with implementation';
 
-    lives_and {
+    is( exception {
         is $instance->foo(foo => "text", bar => 42), '4 42';
-    } 'method called with coerced and uncoerced parameters';
+    }, undef, 'method called with coerced and uncoerced parameters' )
+        or todo_skip 'is() test never ran', 1;
 }