home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / perl-5.003-bin.lha / lib / perl5 / ExtUtils / testlib.pm < prev    next >
Text File  |  1996-10-09  |  438b  |  24 lines

  1. package ExtUtils::testlib;
  2. use lib qw(blib/arch blib/lib);
  3. 1;
  4. __END__
  5.  
  6. =head1 NAME
  7.  
  8. ExtUtils::testlib - add blib/* directories to @INC
  9.  
  10. =head1 SYNOPSIS
  11.  
  12. C<use ExtUtils::testlib;>
  13.  
  14. =head1 DESCRIPTION
  15.  
  16. After an extension has been built and before it is installed it may be
  17. desirable to test it bypassing C<make test>. By adding
  18.  
  19.     use ExtUtils::testlib;
  20.  
  21. to a test program the intermediate directories used by C<make> are
  22. added to @INC.
  23.  
  24.