summaryrefslogtreecommitdiffstats
path: root/t/05-moose.t
diff options
context:
space:
mode:
Diffstat (limited to 't/05-moose.t')
-rw-r--r--t/05-moose.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/05-moose.t b/t/05-moose.t
index 33a14b1..e4f8d39 100644
--- a/t/05-moose.t
+++ b/t/05-moose.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 12;
+use Test::More;
package Foo;
use Moose;
@@ -49,3 +49,5 @@ isa_ok($foo_othersub, 'Foo');
is($foo_othersub->foo, 'FOO', 'inheritance works (all immutable)');
ok(Foo::OtherSub->meta->has_method('new'),
'Foo::OtherSub has its own new method (all immutable)');
+
+done_testing;