Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 050_metaclasses / failing / 021_export_with_prototype.t
@@ -1,26 +1,20 @@
 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;
-$TODO = q{Mouse is not yet completed};
+use Test::More (tests => 4);
 use Test::Exception;
 
 lives_and {
     with_prototype {
         my $caller = caller(0);
-        is($caller, 'MyExporter', "With_caller prototype code gets called from MyMooseX");
+        is($caller, 'MyExporter', "With_caller prototype code gets called from MyMouseX");
     };
 } "check function with prototype";
 
 lives_and {
     as_is_prototype {
         my $caller = caller(0);
-        is($caller, 'MyExporter', "As-is prototype code gets called from MyMooseX");
+        is($caller, 'MyExporter', "As-is prototype code gets called from MyMouseX");
     };
 } "check function with prototype";
-
-done_testing;