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