projects
/
gitmo/MooseX-ClassAttribute.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
287f2b9
)
use done_testing
Dave Rolsky [Thu, 7 Oct 2010 14:02:22 +0000 (09:02 -0500)]
t/04-with-native-traits.t
patch
|
blob
|
blame
|
history
t/05-with-attribute-helpers-backcompat.t
patch
|
blob
|
blame
|
history
diff --git
a/t/04-with-native-traits.t
b/t/04-with-native-traits.t
index
696972d
..
ba8c5eb
100644
(file)
--- 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
(file)
--- 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();