Regenerate test files
[gitmo/Mouse.git] / t / 050_metaclasses / 021_export_with_prototype.t
@@ -1,20 +1,26 @@
 use lib "t/lib";
+# This is automatically generated by author/import-moose-test.pl.
+# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
+use t::lib::MooseCompat;
 package MyExporter::User;
 use MyExporter;
 
-use Test::More (tests => 4);
+use Test::More;
+$TODO = q{Mouse is not yet completed};
 use Test::Exception;
 
 lives_and {
     with_prototype {
         my $caller = caller(0);
-        is($caller, 'MyExporter', "With_caller prototype code gets called from MyMouseX");
+        is($caller, 'MyExporter', "With_caller prototype code gets called from MyMooseX");
     };
 } "check function with prototype";
 
 lives_and {
     as_is_prototype {
         my $caller = caller(0);
-        is($caller, 'MyExporter', "As-is prototype code gets called from MyMouseX");
+        is($caller, 'MyExporter', "As-is prototype code gets called from MyMooseX");
     };
 } "check function with prototype";
+
+done_testing;