X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F01-Redis.t;h=714c898c80315fe5231ec500f0afd42d8eeae2af;hp=242a863346c82aa80492d46a00dac8e8e8cfa695;hb=d83b94045bd5ac5764d26319e03d1ee6c4266e63;hpb=74f09579425ad6060edc98c31b7781b57c5fecde diff --git a/t/01-Redis.t b/t/01-Redis.t index 242a863..714c898 100755 --- a/t/01-Redis.t +++ b/t/01-Redis.t @@ -3,7 +3,7 @@ use warnings; use strict; -use Test::More tests => 53; +use Test::More tests => 62; use lib 'lib'; @@ -78,4 +78,21 @@ ok( $@, 'rename to existing key' ); ok( my $nr_keys = $o->dbsize, 'dbsize' ); diag "dbsize: $nr_keys"; +diag "Commands operating on lists"; + +my $list = 'test-list'; + +$o->del($list) && diag "cleanup $list from last run"; + +ok( $o->rpush( $list => "r$_" ), 'rpush' ) foreach ( 1 .. 3 ); + +ok( $o->lpush( $list => "l$_" ), 'lpush' ) foreach ( 1 .. 2 ); + +cmp_ok( $o->llen($list), '==', 5, 'llen' ); + +is_deeply( [ $o->lrange( $list, 0, 1 ) ], [ 'l2', 'l1' ], 'lrange' ); + +ok( $o->ltrim( $list, 2, 3 ), 'ltrim' ); +cmp_ok( $o->llen($list), '==', 2, 'llen after ltrim' ); + ok( $o->quit, 'quit' );