home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / ExtUtils / testlib.pm < prev    next >
Text File  |  1997-05-18  |  544b  |  27 lines

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