added logging

This commit is contained in:
JT Smith 2009-09-27 17:33:46 -05:00
parent d399f23baf
commit 2a94b0806c
4 changed files with 54 additions and 27 deletions

View file

@ -48,8 +48,8 @@ $cache->delete("Shawshank");
is(eval{$cache->get("Shawshank")}, undef, 'delete');
$cache->flush;
is(eval{$cache->get(["andy", "dufresne"])}, undef, 'flush');
$cache->setByHttp("google", "http://www.google.com/");
cmp_ok($cache->get("google"), 'ne', '', 'setByHttp');
$cache->setByHttp("http://www.google.com/");
cmp_ok($cache->get("http://www.google.com/"), 'ne', '', 'setByHttp');
#----------------------------------------------------------------------------