From: Dave Rolsky Date: Thu, 7 Oct 2010 14:02:22 +0000 (-0500) Subject: use done_testing X-Git-Tag: v0.20~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d4e5a2f2dd063eab42cce80c93b453bfd44f7bf5;hp=287f2b9d9f74d904de40d8218debb6bd6d1ab918;p=gitmo%2FMooseX-ClassAttribute.git use done_testing --- diff --git a/t/04-with-native-traits.t b/t/04-with-native-traits.t index 696972d..ba8c5eb 100644 --- a/t/04-with-native-traits.t +++ b/t/04-with-native-traits.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More tests => 2; +use Test::More; { package MyClass; @@ -24,3 +24,4 @@ is( MyClass->counter(), 0 ); MyClass->inc_counter(); is( MyClass->counter(), 1 ); +done_testing(); diff --git a/t/05-with-attribute-helpers-backcompat.t b/t/05-with-attribute-helpers-backcompat.t index 749d042..5cea4fe 100644 --- a/t/05-with-attribute-helpers-backcompat.t +++ b/t/05-with-attribute-helpers-backcompat.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More tests => 2; +use Test::More; use Test::Requires { 'MooseX::AttributeHelpers' => 0.23, @@ -28,3 +28,4 @@ is( MyClass->counter(), 0 ); MyClass->inc_counter(); is( MyClass->counter(), 1 ); +done_testing();