From: Dave Rolsky Date: Mon, 14 Feb 2011 03:32:35 +0000 (-0600) Subject: use done_testing X-Git-Tag: v0.23~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-ClassAttribute.git;a=commitdiff_plain;h=4b757b92cd9512ae47b6a60c8bec740e8810e96e use done_testing --- diff --git a/t/09-bare-native-traits.t b/t/09-bare-native-traits.t index a6b18ae..5c5f4e5 100644 --- a/t/09-bare-native-traits.t +++ b/t/09-bare-native-traits.t @@ -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(); diff --git a/t/11-strict-role-composition.t b/t/11-strict-role-composition.t index 48f704a..6cbc7bf 100644 --- a/t/11-strict-role-composition.t +++ b/t/11-strict-role-composition.t @@ -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();