Subject: | 'make test' error on t/10object.t |
make test error:
t/10object......NOK 8
# Failed test in t/10object.t at line 28.
# got: 'http://www.oreilly.com/catalog/covers/1565926285_sm.gif'
# expected: 'http://www.oreilly.com/catalog/covers/qmail_icon.gif'
just update the t/10object.t:
change:
is($book->{'image_link'},'http://www.oreilly.com/catalog/covers/qmail_icon.gif');
to:
is($book->{'image_link'},'http://www.oreilly.com/catalog/covers/1565926285_sm.gif');
Subject: | 10object.patch |
--- t/10object.t 2005-09-12 10:25:54.000000000 -0300
+++ ../../WWW-Scraper-ISBN-ORA_Driver-0.06/t/10object.t 2006-10-02 14:35:39.000000000 -0300
@@ -25,7 +25,7 @@
like($book->{'title'},qr/qmail/);
is($book->{'author'},'John Levine');
is($book->{'book_link'},'http://www.oreilly.com/catalog/qmail/index.html');
- is($book->{'image_link'},'http://www.oreilly.com/catalog/covers/qmail_icon.gif');
+ is($book->{'image_link'},'http://www.oreilly.com/catalog/covers/1565926285_sm.gif');
is($book->{'description'},'qmail concentrates on common tasks like moving a sendmail setup to qmail, or setting up a POP toaster, a system that provides mail service to a large number of users on other computers sending and retrieving mail remotely. The book fills crucial gaps...');
like($book->{'pubdate'},qr/Mar. \d{2}, 2004/);
is($book->{'publisher'},q!O'Reilly & Associates!);