Convert all tests to done_testing.
[gitmo/Moose.git] / t / 100_bugs / 016_inheriting_from_roles.t
index aa6a86b..c001dbb 100644 (file)
@@ -3,11 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 1;
+use Test::More;
 use Test::Exception;
 
 
-
 {
     package My::Role;
     use Moose::Role;
@@ -21,3 +20,5 @@ use Test::Exception;
     } qr/You cannot inherit from a Moose Role \(My\:\:Role\)/,
     '... this croaks correctly';
 }
+
+done_testing;