Regenerate test files
[gitmo/Mouse.git] / t / 030_roles / 034_create_role.t
index 03a8cb8..fa53f5f 100644 (file)
@@ -1,8 +1,11 @@
 #!/usr/bin/env 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 => 4;
-use Mouse::Role ();
+use Test::More;
+use Mouse ();
 
 my $role = Mouse::Meta::Role->create(
     'MyItem::Role::Equipment',
@@ -30,3 +33,4 @@ ok(!$visored->is_worn, "method was consumed");
 
 ok(!$role->is_anon_role, "the role is not anonymous");
 
+done_testing;