/[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 8 by dpavlin, Sat Mar 21 22:48:46 2009 UTC revision 9 by dpavlin, Sat Mar 21 22:54:10 2009 UTC
# Line 3  Line 3 
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6  use Test::More tests => 37;  use Test::More tests => 42;
7    
8  use lib 'lib';  use lib 'lib';
9    
# Line 26  ok( $o->set( foo => 'baz' ), 'set foo => Line 26  ok( $o->set( foo => 'baz' ), 'set foo =>
26    
27  cmp_ok( $o->get( 'foo' ), 'eq', 'baz', 'get foo = baz' );  cmp_ok( $o->get( 'foo' ), 'eq', 'baz', 'get foo = baz' );
28    
29    ok( ! $o->exists( 'non-existant' ), 'exists non-existant' );
30  ok( ! $o->get( 'non-existant' ), 'get non-existant' );  ok( ! $o->get( 'non-existant' ), 'get non-existant' );
31    
32  ok( $o->set('key-next' => 0), 'key-next = 0' );  ok( $o->set('key-next' => 0), 'key-next = 0' );
# Line 36  ok( $o->set('key-left' => $key_next), 'k Line 37  ok( $o->set('key-left' => $key_next), 'k
37    
38  foreach ( 0 .. $key_next ) {  foreach ( 0 .. $key_next ) {
39          ok(     $o->set( "key-$_" => $_ ),           "set key-$_" );          ok(     $o->set( "key-$_" => $_ ),           "set key-$_" );
40            ok(  $o->exists( "key-$_"       ),           "exists key-$_" );
41          cmp_ok( $o->get( "key-$_"       ), 'eq', $_, "get key-$_" );          cmp_ok( $o->get( "key-$_"       ), 'eq', $_, "get key-$_" );
42          cmp_ok( $o->incr( 'key-next' ), '==', $_ + 1, 'incr' );          cmp_ok( $o->incr( 'key-next' ), '==', $_ + 1, 'incr' );
43          cmp_ok( $o->decr( 'key-left' ), '==', $key_next - $_ - 1, 'decr' );          cmp_ok( $o->decr( 'key-left' ), '==', $key_next - $_ - 1, 'decr' );

Legend:
Removed from v.8  
changed lines
  Added in v.9

  ViewVC Help
Powered by ViewVC 1.1.26