Sha256: 9c3d4e718d0e0f0d50b284f7c11760040e3ee28df9764ba25b3ce0dfaac363a4

Contents?: true

Size: 1.1 KB

Versions: 33

Compression:

Stored size: 1.1 KB

Contents

require 'spec_helper'

describe '#rpush(key)' do
  before { @key = "mock-redis-test:#{__FILE__}" }

  it 'returns the new size of the list' do
    @redises.rpush(@key, 'X').should == 1
    @redises.rpush(@key, 'X').should == 2
  end

  it 'creates a new list when run against a nonexistent key' do
    @redises.rpush(@key, 'value')
    @redises.llen(@key).should == 1
  end

  it 'appends items to the list' do
    @redises.rpush(@key, 'bert')
    @redises.rpush(@key, 'ernie')

    @redises.lindex(@key, 0).should == 'bert'
    @redises.lindex(@key, 1).should == 'ernie'
  end

  it 'stores values as strings' do
    @redises.rpush(@key, 1)
    @redises.lindex(@key, 0).should == '1'
  end

  it 'supports a variable number of arguments' do
    @redises.rpush(@key, [1, 2, 3]).should == 3
    @redises.lindex(@key, 0).should == '1'
    @redises.lindex(@key, 1).should == '2'
    @redises.lindex(@key, 2).should == '3'
  end

  it 'raises an error if an empty array is given' do
    lambda do
      @redises.rpush(@key, [])
    end.should raise_error(Redis::CommandError)
  end

  it_should_behave_like 'a list-only command'
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
mock_redis-0.36.0 spec/commands/rpush_spec.rb
mock_redis-0.35.0 spec/commands/rpush_spec.rb
mock_redis-0.34.0 spec/commands/rpush_spec.rb
mock_redis-0.33.0 spec/commands/rpush_spec.rb
mock_redis-0.32.0 spec/commands/rpush_spec.rb
mock_redis-0.31.0 spec/commands/rpush_spec.rb
mock_redis-0.30.0 spec/commands/rpush_spec.rb
mock_redis-0.29.0 spec/commands/rpush_spec.rb
mock_redis-0.28.0 spec/commands/rpush_spec.rb
mock_redis-0.27.3 spec/commands/rpush_spec.rb
mock_redis-0.27.2 spec/commands/rpush_spec.rb
mock_redis-0.27.1 spec/commands/rpush_spec.rb
mock_redis-0.27.0 spec/commands/rpush_spec.rb
mock_redis-0.26.0 spec/commands/rpush_spec.rb
mock_redis-0.25.0 spec/commands/rpush_spec.rb
mock_redis-0.24.0 spec/commands/rpush_spec.rb
mock_redis-0.23.0 spec/commands/rpush_spec.rb
mock_redis-0.22.0 spec/commands/rpush_spec.rb
mock_redis-0.21.0 spec/commands/rpush_spec.rb
mock_redis-0.20.0 spec/commands/rpush_spec.rb