projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
f5298da
)
Use done_testing
Dave Rolsky [Thu, 19 Aug 2010 04:36:46 +0000 (06:36 +0200)]
t/030_roles/044_role_consumers.t
patch
|
blob
|
blame
|
history
diff --git
a/t/030_roles/044_role_consumers.t
b/t/030_roles/044_role_consumers.t
index
225d032
..
13707f3
100644
(file)
--- a/
t/030_roles/044_role_consumers.t
+++ b/
t/030_roles/044_role_consumers.t
@@
-1,7
+1,7
@@
-#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 3;
+
+use Test::More;
{
package Foo::Role;
@@
-50,3
+50,5
@@
is_deeply([sort Bar::Role->meta->consumers],
['Bar', 'FooBar']);
is_deeply([sort Foo::Role::User->meta->consumers],
['Foo::User']);
+
+done_testing;