/[Redis.pre-github]/t/20-Redis-Hash.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/20-Redis-Hash.t

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

revision 42 by dpavlin, Sun Mar 22 19:17:51 2009 UTC revision 43 by dpavlin, Sun Mar 22 20:04:17 2009 UTC
# Line 11  BEGIN { Line 11  BEGIN {
11          use_ok( 'Redis::Hash' );          use_ok( 'Redis::Hash' );
12  }  }
13    
14  my $h;  ok( my $o = tie( my %h, 'Redis::Hash', 'test-redis-hash' ), 'tie' );
   
 ok( my $o = tie( %$h, 'Redis::Hash', 'test-redis-hash' ), 'tie' );  
15    
16  isa_ok( $o, 'Redis::Hash' );  isa_ok( $o, 'Redis::Hash' );
17    
18  $h = {};  $o->CLEAR();
19    
20    ok( ! keys %h, 'empty' );
21    
22    ok( %h = ( 'foo' => 42, 'bar' => 1, 'baz' => 99 ), '=' );
23    
24  ok( ! %$h, 'empty' );  is_deeply( [ keys %h ], [ 'bar', 'baz', 'foo' ], 'keys' );
25    
26  ok( $h = { 'foo' => 42, 'bar' => 1, 'baz' => 99 }, '=' );  is_deeply( \%h, { bar => 1, baz => 99, foo => 42, }, 'structure' );
27    
 is_deeply( $h, { bar => 1, baz => 99, foo => 42 }, 'values' );  
28    
29  is_deeply( [ keys %$h ], [ 'bar', 'baz', 'foo' ], 'keys' );  diag dump( \%h );
30    
 diag dump( $h );  

Legend:
Removed from v.42  
changed lines
  Added in v.43

  ViewVC Help
Powered by ViewVC 1.1.26