Skip Menu |

This queue is for tickets about the ParallelUserAgent CPAN distribution.

Report information
The Basics
Id: 35775
Status: new
Priority: 0/
Queue: ParallelUserAgent

People
Owner: Nobody in particular
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 2.57
Fixed in: (no value)



Subject: [PATCH] win32 fix for file.t
Uses Cwd (core module). -- Alexandr Ciornii, http://chorny.net
Subject: file.t.patch
--- file.t.dist Wed Feb 12 13:21:15 2003 +++ file.t Sun May 11 19:04:13 2008 @@ -11,11 +11,12 @@ require LWP::Parallel::UserAgent; require HTTP::Request; -my $ua = new LWP::Parallel::UserAgent; +my $ua = LWP::Parallel::UserAgent->new(); $ua->agent("Mozilla/0.01 " . $ua->agent); $ua->from('marclang@cpan.org'); -my $pwd = `pwd`; +use Cwd; +my $pwd = getcwd; chomp $pwd; #---------------------------------------------------------------