summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/plan_shouldnt_import.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Test-Simple/t/plan_shouldnt_import.t')
-rw-r--r--cpan/Test-Simple/t/plan_shouldnt_import.t16
1 files changed, 16 insertions, 0 deletions
diff --git a/cpan/Test-Simple/t/plan_shouldnt_import.t b/cpan/Test-Simple/t/plan_shouldnt_import.t
new file mode 100644
index 0000000000..b6eb064244
--- /dev/null
+++ b/cpan/Test-Simple/t/plan_shouldnt_import.t
@@ -0,0 +1,16 @@
+#!/usr/bin/perl -w
+
+# plan() used to export functions by mistake [rt.cpan.org 8385]
+
+BEGIN {
+ if( $ENV{PERL_CORE} ) {
+ chdir 't';
+ @INC = '../lib';
+ }
+}
+
+
+use Test::More ();
+Test::More::plan(tests => 1);
+
+Test::More::ok( !__PACKAGE__->can('ok'), 'plan should not export' );