Reorganize t/050_metaclasses/
[gitmo/Mouse.git] / t / 050_metaclasses / 002_custom_attr_meta_as_role.t
index 106f19c..2f8f519 100644 (file)
@@ -1,13 +1,14 @@
 #!/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;
     use Mouse::Role;
@@ -20,3 +21,5 @@ lives_ok {
     extends 'Mouse::Meta::Attribute';
     with 'MouseX::Attribute::Test';
 } 'custom attribute metaclass extending role is okay';
+
+done_testing;