From: Perl 5 Porters Date: Wed, 6 Mar 1996 05:31:42 +0000 (+0000) Subject: perl 5.002_01: lib/ExtUtils/testlib.pm X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b0c8af803cbec7e5d759c7c22271301e52da6f41;p=p5sagit%2Fp5-mst-13.2.git perl 5.002_01: lib/ExtUtils/testlib.pm Added to MakeMaker 5.26 to simplify manual testing of uninstalled extensions --- diff --git a/lib/ExtUtils/testlib.pm b/lib/ExtUtils/testlib.pm new file mode 100644 index 0000000..d559604 --- /dev/null +++ b/lib/ExtUtils/testlib.pm @@ -0,0 +1,23 @@ +package ExtUtils::testlib; +use lib qw(blib/arch blib/lib); +1; +__END__ + +=head1 NAME + +ExtUtils::testlib - add blib/* directories to @INC + +=head1 SYNOPSIS + +C + +=head1 DESCRIPTION + +After an extension has been built and before it is installed it may be +desirable to test it bypassing C. By adding + + use ExtUtils::testlib; + +to a test program the intermediate directories used by C are +added to @INC. +