projects
/
gitmo/MooseX-ClassAttribute.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e3e09e6
)
use done_testing
Dave Rolsky [Mon, 14 Feb 2011 03:32:35 +0000 (21:32 -0600)]
t/09-bare-native-traits.t
patch
|
blob
|
blame
|
history
t/11-strict-role-composition.t
patch
|
blob
|
blame
|
history
diff --git
a/t/09-bare-native-traits.t
b/t/09-bare-native-traits.t
index
a6b18ae
..
5c5f4e5
100644
(file)
--- 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
(file)
--- 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();