Regenerate test files
[gitmo/Mouse.git] / t / 050_metaclasses / failing / 021_export_with_prototype.t
diff --git a/t/050_metaclasses/failing/021_export_with_prototype.t b/t/050_metaclasses/failing/021_export_with_prototype.t
deleted file mode 100644 (file)
index 469585c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-use lib "t/lib";
-package MyExporter::User;
-use MyExporter;
-
-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 MyMouseX");
-    };
-} "check function with prototype";
-
-lives_and {
-    as_is_prototype {
-        my $caller = caller(0);
-        is($caller, 'MyExporter', "As-is prototype code gets called from MyMouseX");
-    };
-} "check function with prototype";