summaryrefslogtreecommitdiffstats
path: root/t/30-only-metaclass-trait.t
diff options
context:
space:
mode:
Diffstat (limited to 't/30-only-metaclass-trait.t')
-rw-r--r--t/30-only-metaclass-trait.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/30-only-metaclass-trait.t b/t/30-only-metaclass-trait.t
index 07be5d8..c103067 100644
--- a/t/30-only-metaclass-trait.t
+++ b/t/30-only-metaclass-trait.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 4;
+use Test::More;
package Foo;
@@ -20,3 +20,5 @@ my $method = Foo::Moose->meta->get_method('new');
Foo::Moose->meta->make_immutable;
is(Foo::Moose->meta->get_method('new'), $method,
'inlining doesn\'t happen when the constructor trait isn\'t used');
+
+done_testing;