summaryrefslogtreecommitdiffstats
path: root/t/10-immutable.t
diff options
context:
space:
mode:
Diffstat (limited to 't/10-immutable.t')
-rw-r--r--t/10-immutable.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/10-immutable.t b/t/10-immutable.t
index 36430eb..275b387 100644
--- a/t/10-immutable.t
+++ b/t/10-immutable.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 6;
+use Test::More;
package Foo;
@@ -41,3 +41,5 @@ is($foo_moose->foo, 'BAZ', 'foo set by accessor');
is($foo_moose->bar, 'QUUX', 'bar set by accessor');
is($foo_moose->baz, 'Foo', 'baz method');
is($foo_moose->quux, 'Foo::Moose', 'quux method');
+
+done_testing;