Regenerate test files
[gitmo/Mouse.git] / t / 050_metaclasses / 002_custom_attr_meta_as_role.t
index 106f19c..bf3d0e3 100644 (file)
@@ -1,15 +1,16 @@
 #!/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 => 2;
+use Test::More;
 use Test::Exception;
 
-;
-
 lives_ok {
-    package MouseX::Attribute::Test;
+    package MooseX::Attribute::Test;
     use Mouse::Role;
 } 'creating custom attribute "metarole" is okay';
 
@@ -18,5 +19,7 @@ lives_ok {
     use Mouse;
 
     extends 'Mouse::Meta::Attribute';
-    with 'MouseX::Attribute::Test';
+    with 'MooseX::Attribute::Test';
 } 'custom attribute metaclass extending role is okay';
+
+done_testing;