summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-04-11 17:19:55 +0200
committerfranck cuny <franck@lumberjaph.net>2010-04-11 17:19:55 +0200
commit61c5d22e63d49decaf2ea150fbb0870a7e57944f (patch)
tree9a986ce63a9c75fbefe49083dcbdb82d7f8169de /t
parentmore API cleanup and POD (diff)
downloadanyevent-riak-61c5d22e63d49decaf2ea150fbb0870a7e57944f.tar.gz
fix store and fetch
Diffstat (limited to 't')
-rw-r--r--t/basic.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/basic.t b/t/basic.t
index a898f68..89da815 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -65,8 +65,8 @@ my $value = {
ok my $res = $riak->store('foo', 'bar', $value)->recv, 'set a new key';
-# ok $res = $riak->fetch( 'foo', 'bar' )->recv, 'fetch our new key';
-# is_deeply $res, $value, 'value is ok';
+ok $res = $riak->fetch( 'foo', 'bar' )->recv, 'fetch our new key';
+is_deeply $res, $value, 'value is ok';
# ok $res = $riak->delete( 'foo', 'bar' )->recv, 'delete our key';
# ok my $store_w_cb = $riak->store(