X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F01-Redis.t;h=58dbdc423afb5fafed5b44458f192850660893d8;hp=0eace1596ec331bb759948674fba1711b8940086;hb=9cfdc80967211c3b14fb981b5e0b012f43447599;hpb=17bcbd7825f411e1b55e15b4e034433a9b1c4811 diff --git a/t/01-Redis.t b/t/01-Redis.t index 0eace15..58dbdc4 100755 --- a/t/01-Redis.t +++ b/t/01-Redis.t @@ -3,7 +3,7 @@ use warnings; use strict; -use Test::More tests => 55; +use Test::More tests => 56; use lib 'lib'; @@ -84,6 +84,7 @@ ok( $o->rpush( 'test-list' => 'foo' ), 'rpush' ); ok( $o->lpush( 'test-list' => 'foo' ), 'lpush' ); +cmp_ok( $o->llen('test-list'), '==', 2, 'llen' ); ok( $o->quit, 'quit' );