summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/lib/MyTest.pm
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Test-Simple/t/lib/MyTest.pm')
-rw-r--r--cpan/Test-Simple/t/lib/MyTest.pm15
1 files changed, 0 insertions, 15 deletions
diff --git a/cpan/Test-Simple/t/lib/MyTest.pm b/cpan/Test-Simple/t/lib/MyTest.pm
deleted file mode 100644
index e8ad8a3e53..0000000000
--- a/cpan/Test-Simple/t/lib/MyTest.pm
+++ /dev/null
@@ -1,15 +0,0 @@
-use strict;
-use warnings;
-
-package MyTest;
-
-use Test::Builder;
-
-my $Test = Test::Builder->new;
-
-sub ok
-{
- $Test->ok(@_);
-}
-
-1;