Sha256: 92ccff3eb03dd8cf79be1622e16f79ebba30b8691c9f6a407b032f611abd7c3d
Contents?: true
Size: 579 Bytes
Versions: 11
Compression:
Stored size: 579 Bytes
Contents
# encoding: UTF-8 require "helper" class TestDistributedTransactions < Test::Unit::TestCase include Helper::Distributed def test_multi_discard @foo = nil assert_raise Redis::Distributed::CannotDistribute do r.multi { @foo = 1 } end assert_equal nil, @foo assert_raise Redis::Distributed::CannotDistribute do r.discard end end def test_watch_unwatch assert_raise Redis::Distributed::CannotDistribute do r.watch("foo") end assert_raise Redis::Distributed::CannotDistribute do r.unwatch end end end
Version data entries
11 entries across 11 versions & 3 rubygems