Unused variables.
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / testlib.pm
CommitLineData
b0c8af80 1package ExtUtils::testlib;
39234879 2$VERSION = 1.12_01;
d713330a 3
f6d6199c 4# So the tests can chdir around and not break @INC.
5use File::Spec;
6use lib map File::Spec->rel2abs($_), qw(blib/arch blib/lib);
b0c8af80 71;
8__END__
9
10=head1 NAME
11
12ExtUtils::testlib - add blib/* directories to @INC
13
14=head1 SYNOPSIS
15
39234879 16 use ExtUtils::testlib;
b0c8af80 17
18=head1 DESCRIPTION
19
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