From 5a5b351f6789989cf4f6033128a8cc2f711c795f Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 15 Jun 2010 03:42:31 -0500 Subject: switch to done_testing in tests --- t/05-moose.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 't/05-moose.t') diff --git a/t/05-moose.t b/t/05-moose.t index 33a14b1..e4f8d39 100644 --- a/t/05-moose.t +++ b/t/05-moose.t @@ -1,7 +1,7 @@ #!/usr/bin/env perl use strict; use warnings; -use Test::More tests => 12; +use Test::More; package Foo; use Moose; @@ -49,3 +49,5 @@ isa_ok($foo_othersub, 'Foo'); is($foo_othersub->foo, 'FOO', 'inheritance works (all immutable)'); ok(Foo::OtherSub->meta->has_method('new'), 'Foo::OtherSub has its own new method (all immutable)'); + +done_testing; -- cgit v1.2.3-54-g00ecf