summaryrefslogtreecommitdiffstats
path: root/t/04-multi-level.t
diff options
context:
space:
mode:
Diffstat (limited to 't/04-multi-level.t')
-rw-r--r--t/04-multi-level.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/04-multi-level.t b/t/04-multi-level.t
index 4cd0465..5201c47 100644
--- a/t/04-multi-level.t
+++ b/t/04-multi-level.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 11;
+use Test::More;
package Foo;
@@ -53,3 +53,5 @@ is($foo_moose_sub->bar, 'BAR', 'Foo::Moose::Sub::bar (immutable)');
is($foo_moose_sub->baz, 'BAZ', 'Foo::Moose::Sub::baz (immutable)');
isnt(Foo::Moose::Sub->meta->get_method('new'), undef,
'Foo::Moose::Sub has an inlined constructor');
+
+done_testing;