Regenerate test files
[gitmo/Mouse.git] / t / 100_bugs / 016_inheriting_from_roles.t
index 269efcb..cbfde1b 100644 (file)
@@ -1,13 +1,15 @@
 #!/usr/bin/perl
+# This is automatically generated by author/import-moose-test.pl.
+# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
+use t::lib::MooseCompat;
 
 use strict;
 use warnings;
 
-use Test::More tests => 1;
+use Test::More;
 use Test::Exception;
 
 
-
 {
     package My::Role;
     use Mouse::Role;
@@ -21,3 +23,5 @@ use Test::Exception;
     } qr/You cannot inherit from a Mouse Role \(My\:\:Role\)/,
     '... this croaks correctly';
 }
+
+done_testing;