X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F20-Redis-Hash.t;h=169eda46c072fda184d1db4b06be7b36f722dfad;hp=7bd9dafcc09d90695f8649b8161c4385575b6264;hb=HEAD;hpb=baf5779857bc91db613d13c843af045cc0cbf3f8;ds=sidebyside diff --git a/t/20-Redis-Hash.t b/t/20-Redis-Hash.t index 7bd9daf..169eda4 100755 --- a/t/20-Redis-Hash.t +++ b/t/20-Redis-Hash.t @@ -3,9 +3,8 @@ use warnings; use strict; -use Test::More tests => 7; +use Test::More tests => 8; use lib 'lib'; -use Data::Dump qw/dump/; BEGIN { use_ok( 'Redis::Hash' ); @@ -25,6 +24,6 @@ is_deeply( [ sort keys %h ], [ 'bar', 'baz', 'foo' ], 'keys' ); is_deeply( \%h, { bar => 1, baz => 99, foo => 42, }, 'structure' ); - -#diag dump( \%h ); +ok( my $mem = $o->info->{used_memory}, 'info' ); +diag "used memory $mem";