summaryrefslogtreecommitdiffstats
path: root/t/03-attrs.t
diff options
context:
space:
mode:
Diffstat (limited to 't/03-attrs.t')
-rw-r--r--t/03-attrs.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/03-attrs.t b/t/03-attrs.t
index 6b25849..7451ddc 100644
--- a/t/03-attrs.t
+++ b/t/03-attrs.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 4;
+use Test::More;
package Foo;
@@ -34,3 +34,5 @@ $foo_moose->foo('BAZ');
$foo_moose->bar('QUUX');
is($foo_moose->foo, 'BAZ', 'foo set by accessor');
is($foo_moose->bar, 'QUUX', 'bar set by accessor');
+
+done_testing;