Sha256: 96ba8f2e80e63a40acc1f05ad2c7d849e29f15d0821322460f5483fb9a086c79
Contents?: true
Size: 442 Bytes
Versions: 11
Compression:
Stored size: 442 Bytes
Contents
# encoding: UTF-8 require "helper" require "lint/lists" class TestDistributedCommandsOnLists < Test::Unit::TestCase include Helper::Distributed include Lint::Lists def test_rpoplpush assert_raise Redis::Distributed::CannotDistribute do r.rpoplpush("foo", "bar") end end def test_brpoplpush assert_raise Redis::Distributed::CannotDistribute do r.brpoplpush("foo", "bar", :timeout => 1) end end end
Version data entries
11 entries across 11 versions & 3 rubygems