X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F01-Redis.t;h=6d876f5b1fde12cde42112de6f8baf9ca085a0a7;hp=1990e08a28d25b1f41953f1451e991074655a16c;hb=034e1cea13802c977bd220d8e393c4091d3a99bf;hpb=43600e08dcbe970d69acf6a7fd1aa70d4d141fd3 diff --git a/t/01-Redis.t b/t/01-Redis.t index 1990e08..6d876f5 100755 --- a/t/01-Redis.t +++ b/t/01-Redis.t @@ -3,7 +3,7 @@ use warnings; use strict; -use Test::More tests => 18; +use Test::More tests => 28; use lib 'lib'; @@ -28,9 +28,21 @@ cmp_ok( $o->get( 'foo' ), 'eq', 'baz', 'get foo = baz' ); ok( ! $o->get( 'non-existant' ), 'get non-existant' ); -foreach ( 0 .. 3 ) { +ok( $o->set('key-next' => 0), 'key-next = 0' ); + +my $key_next = 3; + +foreach ( 0 .. $key_next ) { ok( $o->set( "key-$_" => $_ ), "set key-$_" ); cmp_ok( $o->get( "key-$_" ), 'eq', $_, "get key-$_" ); + cmp_ok( $o->incr( 'key-next' ), '==', $_ + 1, 'incr' ); +} + +cmp_ok( $o->get( 'key-next' ), '==', $key_next + 1, 'key-next' ); + +ok( $o->set('test-incrby', 0), 'test-incrby' ); +foreach ( 1 .. 3 ) { + cmp_ok( $o->incr('test-incrby', 3), '==', $_ * 3, 'incrby 3' ); } ok( $o->quit, 'quit' );