Regenerate test files
[gitmo/Mouse.git] / t-failing / 030_roles / 024_role_composition_methods.t
@@ -1,12 +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 => 19;
+use Test::More;
+$TODO = q{Mouse is not yet completed};
 use Test::Exception;
 
-use Mouse::Meta::Role::Application::RoleSummation;
+use Mouse::Meta::Role::Application;
 use Mouse::Meta::Role::Composite;
 
 {
@@ -50,7 +54,7 @@ use Mouse::Meta::Role::Composite;
     is($c->name, 'Role::Foo|Role::Bar', '... got the composite role name');
 
     lives_ok {
-        Mouse::Meta::Role::Application::RoleSummation->new->apply($c);
+        Mouse::Meta::Role::Application->new->apply($c);
     } '... this succeeds as expected';
 
     is_deeply(
@@ -73,7 +77,7 @@ use Mouse::Meta::Role::Composite;
     is($c->name, 'Role::Foo|Role::FooConflict', '... got the composite role name');
 
     lives_ok {
-        Mouse::Meta::Role::Application::RoleSummation->new->apply($c);
+        Mouse::Meta::Role::Application->new->apply($c);
     } '... this succeeds as expected';
 
     is_deeply(
@@ -104,7 +108,7 @@ use Mouse::Meta::Role::Composite;
     is($c->name, 'Role::Foo|Role::Bar|Role::FooConflict|Role::BarConflict', '... got the composite role name');
 
     lives_ok {
-        Mouse::Meta::Role::Application::RoleSummation->new->apply($c);
+        Mouse::Meta::Role::Application->new->apply($c);
     } '... this succeeds as expected';
 
     is_deeply(
@@ -133,7 +137,7 @@ use Mouse::Meta::Role::Composite;
     is($c->name, 'Role::Foo|Role::AnotherFooConflict', '... got the composite role name');
 
     lives_ok {
-        Mouse::Meta::Role::Application::RoleSummation->new->apply($c);
+        Mouse::Meta::Role::Application->new->apply($c);
     } '... this succeeds as expected';
 
     is_deeply(
@@ -149,3 +153,4 @@ use Mouse::Meta::Role::Composite;
     );
 }
 
+done_testing;