summaryrefslogtreecommitdiffstats
path: root/t/21-BUILDARGS.t
diff options
context:
space:
mode:
Diffstat (limited to 't/21-BUILDARGS.t')
-rw-r--r--t/21-BUILDARGS.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/21-BUILDARGS.t b/t/21-BUILDARGS.t
index 4fed2a7..32bb72a 100644
--- a/t/21-BUILDARGS.t
+++ b/t/21-BUILDARGS.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 4;
+use Test::More;
use Test::Moose;
package Foo;
@@ -36,3 +36,5 @@ with_immutable {
is($foo->name, 'bar', 'superclass constructor gets the right args');
is($foo->foo, 'baz', 'subclass constructor gets the right args');
} 'Foo::Moose';
+
+done_testing;