xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/plan_shouldnt_import.t (revision 5759b3d249badf144a6240f7eec4dcf9df003e6b)
1#!/usr/bin/perl -w
2
3# plan() used to export functions by mistake [rt.cpan.org 8385]
4
5BEGIN {
6    if( $ENV{PERL_CORE} ) {
7        chdir 't';
8        @INC = '../lib';
9    }
10}
11
12
13use Test::More ();
14Test::More::plan(tests => 1);
15
16Test::More::ok( !__PACKAGE__->can('ok'), 'plan should not export' );
17