This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
podlators 1.05 available
[perl5.git] / lib / ExtUtils / testlib.pm
CommitLineData
b0c8af80 1package ExtUtils::testlib;
d713330a 2$VERSION = substr q$Revision: 1.11 $, 10;
3# $Id: testlib.pm,v 1.11 1996/05/31 08:27:07 k Exp $
4
b0c8af80 5use lib qw(blib/arch blib/lib);
61;
7__END__
8
9=head1 NAME
10
11ExtUtils::testlib - add blib/* directories to @INC
12
13=head1 SYNOPSIS
14
15C<use ExtUtils::testlib;>
16
17=head1 DESCRIPTION
18
19After an extension has been built and before it is installed it may be
20desirable to test it bypassing C<make test>. By adding
21
22 use ExtUtils::testlib;
23
24to a test program the intermediate directories used by C<make> are
25added to @INC.
26