/[Redis.pre-github]/t/01-Redis.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /t/01-Redis.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 21 by dpavlin, Sun Mar 22 10:36:22 2009 UTC revision 22 by dpavlin, Sun Mar 22 10:45:06 2009 UTC
# Line 3  Line 3 
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6  use Test::More tests => 56;  use Test::More tests => 62;
7    
8  use lib 'lib';  use lib 'lib';
9    
# Line 80  diag "dbsize: $nr_keys"; Line 80  diag "dbsize: $nr_keys";
80    
81  diag "Commands operating on lists";  diag "Commands operating on lists";
82    
83  ok( $o->rpush( 'test-list' => "r$_" ), 'rpush' ) foreach ( 1 .. 3 );  my $list = 'test-list';
84    
85  ok( $o->lpush( 'test-list' => "l$_" ), 'lpush' ) foreach ( 1 .. 2 );  $o->del($list) && diag "cleanup $list from last run";
86    
87  cmp_ok( $o->llen('test-list'), '==', 2, 'llen' );  ok( $o->rpush( $list => "r$_" ), 'rpush' ) foreach ( 1 .. 3 );
88    
89  is_deeply( [ $o->lrange( 'test-list', 0, 1 ) ], [ 'l2', 'l1' ], 'lrange' );  ok( $o->lpush( $list => "l$_" ), 'lpush' ) foreach ( 1 .. 2 );
90    
91    cmp_ok( $o->llen($list), '==', 5, 'llen' );
92    
93    is_deeply( [ $o->lrange( $list, 0, 1 ) ], [ 'l2', 'l1' ], 'lrange' );
94    
95    ok( $o->ltrim( $list, 2, 3 ), 'ltrim' );
96    cmp_ok( $o->llen($list), '==', 2, 'llen after ltrim' );
97    
98  ok( $o->quit, 'quit' );  ok( $o->quit, 'quit' );

Legend:
Removed from v.21  
changed lines
  Added in v.22

  ViewVC Help
Powered by ViewVC 1.1.26