fix warning + carp interaction
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / testlib.pm
CommitLineData
b0c8af80 1package ExtUtils::testlib;
39234879 2$VERSION = 1.12_01;
d713330a 3
b0c8af80 4use lib qw(blib/arch blib/lib);
51;
6__END__
7
8=head1 NAME
9
10ExtUtils::testlib - add blib/* directories to @INC
11
12=head1 SYNOPSIS
13
39234879 14 use ExtUtils::testlib;
b0c8af80 15
16=head1 DESCRIPTION
17
39234879 18B<THIS MODULE IS OBSOLETE!> Use blib instead.
19
b0c8af80 20After an extension has been built and before it is installed it may be
21desirable to test it bypassing C<make test>. By adding
22
23 use ExtUtils::testlib;
24
25to a test program the intermediate directories used by C<make> are
26added to @INC.
27