09097ef759ef1419e24b7427db6c1f2974478111
[p5sagit/p5-mst-13.2.git] / t / TestInit.pm
1 # This is a replacement for the old BEGIN preamble which heads (or
2 # should head) up every core test program to prepare it for running.
3 # Now instead of:
4 #
5 # BEGIN {
6 #   chdir 't' if -d 't';
7 #   @INC = '../lib';
8 # }
9 #
10 # Its primary purpose is to clear @INC so core tests don't pick up
11 # modules from an installed Perl.
12 #
13 # t/TEST will use -MTestInit.  You may "use TestInit" in the test
14 # programs but it is not required.
15 #
16 # P.S. This documentation is not in POD format in order to avoid
17 # problems when there are fundamental bugs in perl.
18
19 package TestInit;
20
21 $VERSION = 1.01;
22
23 chdir 't' if -d 't';
24 @INC = '../lib';
25
26 # Don't interfere with the taintedness of %ENV, this could perturbate tests
27 $ENV{PERL_CORE} = 1 unless ${^TAINT};
28
29 $0 =~ s/\.dp$//; # for the test.deparse make target
30 1;
31