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 37 38 39 40 41 42
|
#!perl -T
use warnings;
use strict;
use Test::More tests => 13;
BEGIN {
use_ok( 'WWW::Mechanize' );
}
my $agent = WWW::Mechanize->new;
isa_ok( $agent, 'WWW::Mechanize', 'Created object' );
FIRST_GET: {
my $r = $agent->get("http://www.google.com/intl/en/");
isa_ok( $r, "HTTP::Response" );
ok( $r->is_success, "Get google webpage");
is( ref $agent->uri, "", "URI should be string, not an object" );
ok( $agent->is_html );
is( $agent->title, "Google" );
}
INVALIDATE: {
undef $agent->{content};
undef $agent->{ct};
isnt( $agent->title, "Google" );
ok( !$agent->is_html );
}
RELOAD: {
my $r = $agent->reload;
isa_ok( $r, "HTTP::Response" );
ok( $agent->is_html );
ok( $agent->title, "Google" );
}
SKIP: {
eval "use Test::Memory::Cycle";
skip "Test::Memory::Cycle not installed", 1 if $@;
memory_cycle_ok( $agent, "No memory cycles found" );
}
|