Help for this page

Select Code to Download


  1. or download this
    > cpan Path::Tiny
    Reading 'C:\Users\jndt\.cpan\Metadata'
    ...
    t/00-report-prereqs.t ............. Can't dup STDOUT:  Bad file descri
    +ptor at C:/perl-5.20.3/lib/Test/Builder.pm line 1948.
    Compilation failed in require at C:/perl-5.20.3/lib/Test/Builder/Modul
    +e.pm line 5.
    ...
    
  2. or download this
    sub _open_testhandles {
        my $self = shift;
    ...
    
        return;
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
    open( $Testout, ">&STDOUT" ) or die "Can't dup STDOUT:  $!";
    print $Testout "Hello Perl Monks!\n";
    __END__