This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make hv_notallowed a static as suggested by Nicholas Clark;
[perl5.git] / lib / ExtUtils / testlib.pm
1 package ExtUtils::testlib;
2 $VERSION = 1.12_01;
3
4 # So the tests can chdir around and not break @INC.
5 use File::Spec;
6 use lib map File::Spec->rel2abs($_), qw(blib/arch blib/lib);
7 1;
8 __END__
9
10 =head1 NAME
11
12 ExtUtils::testlib - add blib/* directories to @INC
13
14 =head1 SYNOPSIS
15
16   use ExtUtils::testlib;
17
18 =head1 DESCRIPTION
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