summaryrefslogtreecommitdiffstats
path: root/t/06-disable.t
diff options
context:
space:
mode:
Diffstat (limited to 't/06-disable.t')
-rw-r--r--t/06-disable.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/06-disable.t b/t/06-disable.t
index 6d652ab..73b9ed1 100644
--- a/t/06-disable.t
+++ b/t/06-disable.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 3;
+use Test::More;
package Foo;
@@ -31,3 +31,5 @@ my $method2 = Foo::Moose2->meta->get_method('new');
Foo::Moose2->meta->make_immutable(inline_constructor => 0);
is($method2, Foo::Moose2->meta->get_method('new'),
'make_immutable doesn\'t replace the constructor if we ask it not to');
+
+done_testing;