Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        chdir '..' unless -d 't';
    }
    use t::Whatever;
    
  2. or download this
    BEGIN {
        chdir 't' if -d 't';
    }
    use Whatever;
    
  3. or download this
    BEGIN {
        chdir '..' unless -d 't';
    }
    push @INC, 't';
    use Whatever;