About the test file t/computers4sure.t
my @links = $mech->find_all_links(
url_regex => qr{product\.asp\?productid=} );
cmp_ok( scalar @links, '>', 10, 'Should have lots of product links' );
Failes because, most likely, http://www.computers4sure.com/ (line 18 in t/computers4sure.t) has changed their link style.
And:
ok( $mech->content =~ /Your price/i, 'Found a likely phrase in the
second page' );
...also fails, noe such text on that web page anymore. Otherwise all
tests pass on my perl 5.10 and the module is beautiful.