1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
  
     | 
    
      #!perl
use strict;
use warnings;
use Test::More tests => 3;
BEGIN {
    use_ok( 'Test::WWW::Mechanize' );
}
use lib 't';
use TestServer;
my $server      = TestServer->new;
my $pid         = $server->background;
my $server_root = $server->root;
my $mech = Test::WWW::Mechanize->new();
isa_ok($mech,'Test::WWW::Mechanize');
$mech->get("$server_root/manylinks.html");
# Good links.
my @links = $mech->followable_links();
@links = map { $_->url_abs } @links;
my @expected = (
    "$server_root/goodlinks.html",
    'http://bongo.com/wang.html',
    'https://secure.bongo.com/',
    "$server_root/badlinks.html",
    "$server_root/goodlinks.html",
);
is_deeply( \@links, \@expected, 'Got the right links' );
$server->stop;
 
     |