~ubuntu-branches/ubuntu/edgy/libwww-perl/edgy

« back to all changes in this revision

Viewing changes to t/TEST

  • Committer: Bazaar Package Importer
  • Author(s): Jay Bonci
  • Date: 2005-02-13 18:45:32 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050213184532-67qvopi4wre3010u
Tags: 5.803-4
* Make GET/POST/HEAD symlinks (Closes: #294597)
* lwp-requests now honors -b when dumping links (Closes: #294595)
  - Thanks to giuseppe bonacci for the patch
* Moved symlinks to a libwww-perl.links file

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
    # fix all relative library locations
14
14
    foreach (@INC) {
15
 
        $_ = "../$_" unless m,^/,;
 
15
        $_ = "../$_" unless m,^([a-z]:)?[/\\],i;
16
16
    }
17
17
}
18
18
# Pick up the library files from the ../blib directory
22
22
 
23
23
use Test::Harness;
24
24
$Test::Harness::verbose = shift
25
 
  if $ARGV[0] =~ /^\d+$/ || $ARGV[0] eq "-v";
 
25
  if defined $ARGV[0] and $ARGV[0] =~ /^\d+$/ || $ARGV[0] eq "-v";
26
26
 
27
27
my @tests;
28
28