Regenerate test files
[gitmo/Mouse.git] / t-failing / 030_roles / 026_role_composition_method_mods.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 => 7;
+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;
 
 {
@@ -63,7 +67,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(
@@ -84,3 +88,5 @@ use Mouse::Meta::Role::Composite;
         '... got the right list of methods'
     );
 }
+
+done_testing;