home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / t / lib / checktree.t < prev    next >
Text File  |  1999-07-20  |  261b  |  20 lines

  1. #!./perl
  2.  
  3. BEGIN {
  4.     chdir 't' if -d 't';
  5.     unshift @INC, '../lib';
  6. }
  7.  
  8. print "1..1\n";
  9.  
  10. use File::CheckTree;
  11.  
  12. # We assume that we run from the perl "t" directory.
  13.  
  14. validate q{
  15.     lib              -d || die
  16.     lib/checktree.t  -f || die
  17. };
  18.  
  19. print "ok 1\n";
  20.