/[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 54 by dpavlin, Tue Mar 24 23:43:16 2009 UTC
# 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' );

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

  ViewVC Help
Powered by ViewVC 1.1.26