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
|
#!perl -T
use warnings;
use strict;
use Test::More tests=>11;
use constant START => 'http://www.google.com/intl/en/';
use_ok( 'WWW::Mechanize' );
my $agent = WWW::Mechanize->new;
isa_ok( $agent, 'WWW::Mechanize', 'Created object' );
$agent->quiet(1);
$agent->get( START );
ok( $agent->success, 'Got some page' ) or die "Can't even get Google";
is( $agent->uri, START, 'Got Google' );
ok(! $agent->follow(99999), "Can't follow too-high-numbered link");
ok($agent->follow_link( text_regex => qr/Advertising.Programs/i ), "Can follow Advertising Programs link");
isnt( $agent->uri, START, 'Need to be on a separate page' );
ok($agent->back(), "Can go back");
is( $agent->uri, START, 'Back at the first page' );
ok(! $agent->follow(qr/asdfghjksdfghj/), "Can't follow unlikely named link");
SKIP: {
eval "use Test::Memory::Cycle";
skip "Test::Memory::Cycle not installed", 1 if $@;
memory_cycle_ok( $agent, "No memory cycles found" );
}
|