summaryrefslogtreecommitdiffstats
path: root/t/02-methods.t
diff options
context:
space:
mode:
Diffstat (limited to 't/02-methods.t')
-rw-r--r--t/02-methods.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/02-methods.t b/t/02-methods.t
index 03b8101..c02438c 100644
--- a/t/02-methods.t
+++ b/t/02-methods.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 3;
+use Test::More;
package Foo;
@@ -23,3 +23,5 @@ my $foo_moose = Foo::Moose->new;
is($foo_moose->foo, 'Foo', 'Foo::Moose->foo');
is($foo_moose->bar, 'Foo::Moose', 'Foo::Moose->bar');
is($foo_moose->baz, 'Foo::Moose', 'Foo::Moose->baz');
+
+done_testing;