/[A3C]/t/05-cache.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/05-cache.t

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

revision 227 by dpavlin, Fri Jun 27 17:53:30 2008 UTC revision 228 by dpavlin, Fri Jun 27 19:09:13 2008 UTC
# Line 8  test cache Line 8  test cache
8    
9  =cut  =cut
10    
11  use Jifty::Test tests => 11;  use Jifty::Test tests => 14;
12    
13  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
14    
# Line 33  skip( 'scalars not supported', 2 ); Line 33  skip( 'scalars not supported', 2 );
33  ok( $strix->write_cache( $data, 'test-scalar' ), 'write_cache scalar' );  ok( $strix->write_cache( $data, 'test-scalar' ), 'write_cache scalar' );
34  is_deeply( $strix->read_cache( 'test-scalar' ), $data, 'read_cache scalar' );  is_deeply( $strix->read_cache( 'test-scalar' ), $data, 'read_cache scalar' );
35  }  }
36    
37  $data = { foo => 42, bar => 'baz' };  $data = { foo => 42, bar => 'baz' };
38  ok( $strix->write_cache( $data, 'test-hash' ), 'write_cache hash' );  ok( $strix->write_cache( $data, 'test-hash' ), 'write_cache hash' );
39  is_deeply( $strix->read_cache( 'test-hash' ), $data, 'read_cache hash' );  is_deeply( $strix->read_cache( 'test-hash' ), $data, 'read_cache hash' );
40    
41    bless $data, 'foo';
42    like( ref($data), qr/foo/, 'data blessed' );
43    diag "blessed = ",dump( $data ) if $debug;
44    ok( $strix->write_cache( $data, 'test-blessed' ), 'write_cache blessed' );
45    is_deeply( $strix->read_cache( 'test-blessed' ), $data, 'read_cache blessed' );
46    
47  $data = [ 1, 2, 42 ];  $data = [ 1, 2, 42 ];
48  ok( $strix->write_cache( $data, 'test-array' ), 'write_cache array' );  ok( $strix->write_cache( $data, 'test-array' ), 'write_cache array' );
49  is_deeply( $strix->read_cache( 'test-array' ), $data, 'read_cache array' );  is_deeply( $strix->read_cache( 'test-array' ), $data, 'read_cache array' );

Legend:
Removed from v.227  
changed lines
  Added in v.228

  ViewVC Help
Powered by ViewVC 1.1.26