Sha256: e0bac3fc6f83a35901355b4da7f50191d021517006c383dac28cb711558fe1df
Contents?: true
Size: 485 Bytes
Versions: 53
Compression:
Stored size: 485 Bytes
Contents
# encoding: UTF-8 require File.expand_path("./helper", File.dirname(__FILE__)) require "redis/distributed" setup do log = StringIO.new init Redis::Distributed.new(NODES, :logger => ::Logger.new(log)) end load './test/lint/lists.rb' test "RPOPLPUSH" do |r| assert_raise Redis::Distributed::CannotDistribute do r.rpoplpush("foo", "bar") end end test "BRPOPLPUSH" do |r| assert_raise Redis::Distributed::CannotDistribute do r.brpoplpush("foo", "bar", 1) end end
Version data entries
53 entries across 53 versions & 6 rubygems