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