/[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 9 by dpavlin, Sat Mar 21 22:54:10 2009 UTC revision 10 by dpavlin, Sat Mar 21 23:05:02 2009 UTC
# Line 3  Line 3 
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6  use Test::More tests => 42;  use Test::More tests => 43;
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    $o->del('non-existant');
30    
31  ok( ! $o->exists( 'non-existant' ), 'exists non-existant' );  ok( ! $o->exists( 'non-existant' ), 'exists non-existant' );
32  ok( ! $o->get( 'non-existant' ), 'get non-existant' );  ok( ! $o->get( 'non-existant' ), 'get non-existant' );
33    
# Line 52  foreach ( 1 .. 3 ) { Line 54  foreach ( 1 .. 3 ) {
54          cmp_ok( $o->decr('test-decrby', 7), '==', -( $_ * 7 ), 'decrby 7' );          cmp_ok( $o->decr('test-decrby', 7), '==', -( $_ * 7 ), 'decrby 7' );
55  }  }
56    
57    ok( $o->del('key-next' ), 'del' );
58    
59  ok( $o->quit, 'quit' );  ok( $o->quit, 'quit' );

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

  ViewVC Help
Powered by ViewVC 1.1.26