summaryrefslogtreecommitdiffstats
path: root/t/22-replaced-constructor.t
diff options
context:
space:
mode:
Diffstat (limited to 't/22-replaced-constructor.t')
-rw-r--r--t/22-replaced-constructor.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/22-replaced-constructor.t b/t/22-replaced-constructor.t
index c7b2e44..3362bc2 100644
--- a/t/22-replaced-constructor.t
+++ b/t/22-replaced-constructor.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 7;
+use Test::More;
our $foo_constructed = 0;
@@ -60,3 +60,5 @@ is($method, Foo::Moose2->meta->get_method('new'),
'make_immutable doesn\'t overwrite custom constructor');
$foo = Foo::Moose2->new;
ok($foo_constructed, 'custom constructor called (immutable)');
+
+done_testing;