summaryrefslogtreecommitdiffstats
path: root/t/50-buggy-constructor-inlining.t
diff options
context:
space:
mode:
Diffstat (limited to 't/50-buggy-constructor-inlining.t')
-rw-r--r--t/50-buggy-constructor-inlining.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/50-buggy-constructor-inlining.t b/t/50-buggy-constructor-inlining.t
index 3537e31..bfb0689 100644
--- a/t/50-buggy-constructor-inlining.t
+++ b/t/50-buggy-constructor-inlining.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 6;
+use Test::More;
use Test::Moose;
my ($Foo, $Bar, $Baz);
@@ -33,3 +33,5 @@ with_immutable {
is($Bar, 1, "Bar->BUILD is called once");
is($Baz, 1, "Baz->BUILD is called once");
} 'Baz';
+
+done_testing;