Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 030_roles / failing / 020_role_composite.t
similarity index 84%
rename from t-failing/030_roles/020_role_composite.t
rename to t/030_roles/failing/020_role_composite.t
index 78335e8..0f00eb0 100644 (file)
@@ -1,16 +1,12 @@
 #!/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;
-$TODO = q{Mouse is not yet completed};
+use Test::More tests => 14;
 use Test::Exception;
 
-use Mouse::Meta::Role::Application;
+#use Mouse::Meta::Role::Application::RoleSummation;
 use Mouse::Meta::Role::Composite;
 
 {
@@ -53,7 +49,7 @@ use Mouse::Meta::Role::Composite;
         );
 
     lives_ok {
-        Mouse::Meta::Role::Application->new->apply($c);
+        Mouse::Meta::Role::Application::RoleSummation->new->apply($c);
     } '... this composed okay';
 
     ##... now nest 'em
@@ -82,5 +78,3 @@ use Mouse::Meta::Role::Composite;
             );
     }
 }
-
-done_testing;