X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F01-Redis.t;h=ff41882077f75747c96870715e7052647849a41c;hp=06895a77168cfd436f35d0215f082b3d7f3ee85b;hb=7b0869dd4683fb3bd7abbe772e70027e37808d8f;hpb=220f99f0edbe8fb1b5e6a4b9cfbf13d6b85623fb diff --git a/t/01-Redis.t b/t/01-Redis.t index 06895a7..ff41882 100755 --- a/t/01-Redis.t +++ b/t/01-Redis.t @@ -3,7 +3,7 @@ use warnings; use strict; -use Test::More tests => 42; +use Test::More tests => 44; use lib 'lib'; @@ -26,6 +26,8 @@ ok( $o->set( foo => 'baz' ), 'set foo => baz' ); cmp_ok( $o->get( 'foo' ), 'eq', 'baz', 'get foo = baz' ); +$o->del('non-existant'); + ok( ! $o->exists( 'non-existant' ), 'exists non-existant' ); ok( ! $o->get( 'non-existant' ), 'get non-existant' ); @@ -52,4 +54,8 @@ foreach ( 1 .. 3 ) { cmp_ok( $o->decr('test-decrby', 7), '==', -( $_ * 7 ), 'decrby 7' ); } +ok( $o->del('key-next' ), 'del' ); + +cmp_ok( $o->type('foo'), 'eq', 'string', 'type' ); + ok( $o->quit, 'quit' );