Sha256: ef47f5803bbd772717f78c7474da53fb0aaa5d6a147b4e2d992094205d50a2f9

Contents?: true

Size: 478 Bytes

Versions: 23

Compression:

Stored size: 478 Bytes

Contents

# encoding: UTF-8

require File.expand_path("helper", File.dirname(__FILE__))
require "lint/lists"

class TestCommandsOnLists < Test::Unit::TestCase

  include Helper::Client
  include Lint::Lists

  def test_rpoplpush
    r.rpush "foo", "s1"
    r.rpush "foo", "s2"

    assert_equal "s2", r.rpoplpush("foo", "bar")
    assert_equal ["s2"], r.lrange("bar", 0, -1)
    assert_equal "s1", r.rpoplpush("foo", "bar")
    assert_equal ["s1", "s2"], r.lrange("bar", 0, -1)
  end
end

Version data entries

23 entries across 22 versions & 8 rubygems

Version Path
finsync_redis-3.3.5 test/commands_on_lists_test.rb
redis-3.3.5 test/commands_on_lists_test.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/redis-3.3.3/test/commands_on_lists_test.rb
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/redis-3.3.3/test/commands_on_lists_test.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/redis-3.3.3/test/commands_on_lists_test.rb
logstash-filter-cache-redis-0.1.0 vendor/bundle/jruby/1.9/gems/redis-3.3.3/test/commands_on_lists_test.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/redis-3.3.3/test/commands_on_lists_test.rb
redis-3.3.3 test/commands_on_lists_test.rb
abaci-0.3.0 vendor/bundle/gems/redis-3.3.1/test/commands_on_lists_test.rb
abaci-0.3.0 vendor/bundle/gems/redis-3.3.2/test/commands_on_lists_test.rb
redis-3.3.2 test/commands_on_lists_test.rb
redis-3.3.1 test/commands_on_lists_test.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/redis-3.3.0/test/commands_on_lists_test.rb
redis-3.3.0 test/commands_on_lists_test.rb
discourse-redis-3.2.2 test/commands_on_lists_test.rb
redis-3.2.2 test/commands_on_lists_test.rb
redis-3.2.1 test/commands_on_lists_test.rb
redis-3.2.0 test/commands_on_lists_test.rb
redis2-namespaced-3.0.7.1 test/commands_on_lists_test.rb
redis2-namespaced-3.0.7 test/commands_on_lists_test.rb