X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2FTestInit.pm;h=aa76fe194bca93baa4349be36a13ab35ca7c749d;hb=6332ff5c9e0b0897076b0fe0ab26612d7472c90a;hp=a2a074e13fba59d2c58a0f1e8fe2a769c16a6d72;hpb=18fc948826e2e527e52b790d8ec042fac21d6b8a;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/TestInit.pm b/t/TestInit.pm index a2a074e..aa76fe1 100644 --- a/t/TestInit.pm +++ b/t/TestInit.pm @@ -1,5 +1,5 @@ # This is a replacement for the old BEGIN preamble which heads (or -# should head) up every core test program to prep it for running. +# should head) up every core test program to prepare it for running. # Now instead of: # # BEGIN { @@ -7,16 +7,22 @@ # @INC = '../lib'; # } # -# t/TEST will use -MTestInit. It also doesn't hurt if you "use TestInit" -# (not require) in the test scripts. +# t/TEST will use -MTestInit. You may "use TestInit" in the test +# programs but it is not required. # -# PS this is not POD because this should be a very minimalist module in -# case of funaemental perl breakage. +# P.S. This documentation is not in POD format in order to avoid +# problems when there are fundamental bugs in perl. package TestInit; +$VERSION = 1.01; + chdir 't' if -d 't'; @INC = '../lib'; + +# Don't interfere with the taintedness of %ENV, this could perturbate tests +$ENV{PERL_CORE} = 1 unless ${^TAINT}; + $0 =~ s/\.dp$//; # for the test.deparse make target 1;