use done_testing
Dave Rolsky [Mon, 14 Feb 2011 03:32:35 +0000 (21:32 -0600)]
t/09-bare-native-traits.t
t/11-strict-role-composition.t

index a6b18ae..5c5f4e5 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 2;
+use Test::More;
 use Test::Fatal;
 
 {
@@ -29,3 +29,5 @@ is(
     undef,
     'Default builder in a native attribute trait is properly run when the attribute is defined with no standard accessors'
 );
+
+done_testing();
index 48f704a..6cbc7bf 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 3;
+use Test::More;
 use Test::Fatal;
 
 use Test::Requires {
@@ -50,3 +50,5 @@ Foo->normal_method();
         'Delegated method from native attribute trait is properly composed from a strict role'
     );
 }
+
+done_testing();