Convert all tests to done_testing.
[gitmo/Moose.git] / t / 100_bugs / 004_subclass_use_base_bug.t
index 4684ab3..3115307 100644 (file)
@@ -3,9 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 2;
-
-
+use Test::More;
 
 =pod
 
@@ -27,4 +25,6 @@ a metaclass initialized for it correctly.
 
 my $bar = Bar->new;
 isa_ok($bar, 'Bar');
-isa_ok($bar, 'Foo');
\ No newline at end of file
+isa_ok($bar, 'Foo');
+
+done_testing;