/[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 53 by dpavlin, Tue Mar 24 22:51:53 2009 UTC revision 58 by dpavlin, Wed Jun 17 16:47:06 2009 UTC
# Line 3  Line 3 
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6  use Test::More tests => 106;  use Test::More tests => 107;
7  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
8    
9  use lib 'lib';  use lib 'lib';
# Line 49  is_deeply( [ $o->mget( 'foo', 'key-next' Line 49  is_deeply( [ $o->mget( 'foo', 'key-next'
49    
50  my @keys;  my @keys;
51    
52  foreach ( 0 .. $key_next ) {  foreach my $id ( 0 .. $key_next ) {
53          my $key = 'key-' . $_;          my $key = 'key-' . $id;
54          push @keys, $key;          push @keys, $key;
55          ok(     $o->set( $key => $_ ),           "set $key" );          ok(     $o->set( $key => $id ),           "set $key" );
56          ok(  $o->exists( $key       ),           "exists $key" );          ok(  $o->exists( $key       ),           "exists $key" );
57          cmp_ok( $o->get( $key       ), 'eq', $_, "get $key" );          cmp_ok( $o->get( $key       ), 'eq', $id, "get $key" );
58          cmp_ok( $o->incr( 'key-next' ), '==', $_ + 1, 'incr' );          cmp_ok( $o->incr( 'key-next' ), '==', $id + 1, 'incr' );
59          cmp_ok( $o->decr( 'key-left' ), '==', $key_next - $_ - 1, 'decr' );          cmp_ok( $o->decr( 'key-left' ), '==', $key_next - $id - 1, 'decr' );
60  }  }
61    
62  cmp_ok( $o->get( 'key-next' ), '==', $key_next + 1, 'key-next' );  cmp_ok( $o->get( 'key-next' ), '==', $key_next + 1, 'key-next' );
# Line 138  cmp_ok( $o->scard( $set ), '==', 0, 'sca Line 138  cmp_ok( $o->scard( $set ), '==', 0, 'sca
138  $o->sadd( 'test-set1', $_ ) foreach ( 'foo', 'bar', 'baz' );  $o->sadd( 'test-set1', $_ ) foreach ( 'foo', 'bar', 'baz' );
139  $o->sadd( 'test-set2', $_ ) foreach ( 'foo', 'baz', 'xxx' );  $o->sadd( 'test-set2', $_ ) foreach ( 'foo', 'baz', 'xxx' );
140    
141  my $inter = [ 'baz', 'foo' ];  my $inter = [ 'foo', 'baz' ];
142    
143  is_deeply( [ $o->sinter( 'test-set1', 'test-set2' ) ], $inter, 'siter' );  is_deeply( [ $o->sinter( 'test-set1', 'test-set2' ) ], $inter, 'siter' );
144    
# Line 182  diag "shutdown not tested"; Line 182  diag "shutdown not tested";
182  diag "Remote server control commands";  diag "Remote server control commands";
183    
184  ok( my $info = $o->info, 'info' );  ok( my $info = $o->info, 'info' );
185    isa_ok( $info, 'HASH' );
186  diag dump( $info );  diag dump( $info );
187    
188  diag "Connection handling";  diag "Connection handling";

Legend:
Removed from v.53  
changed lines
  Added in v.58

  ViewVC Help
Powered by ViewVC 1.1.26