Sha256: c37d054f5d0cbbbd7b1da9f77754bc7f57a883cd7ea7a99231336f6e0655d8f7

Contents?: true

Size: 1.18 KB

Versions: 27

Compression:

Stored size: 1.18 KB

Contents

require 'spec_helper'

describe "#mapped_hmset(key, hash={})" do
  before do
    @key = "mock-redis-test:mapped_hmset"
  end

  it "returns 'OK'" do
    @redises.mapped_hmset(@key, {'k1'=>'v1', 'k2'=>'v2'}).should == 'OK'
  end

  it "sets the values" do
    @redises.mapped_hmset(@key, {'k1'=>'v1', 'k2'=>'v2'})
    @redises.hmget(@key, 'k1', 'k2').should == %w[v1 v2]
  end

  it "updates an existing hash" do
    @redises.hmset(@key, 'foo', 'bar')
    @redises.mapped_hmset(@key, {'bert' => 'ernie', 'diet' => 'coke'})

    @redises.hmget(@key, 'foo', 'bert', 'diet').
      should == %w[bar ernie coke]
  end

  it "stores the values as strings" do
    @redises.mapped_hmset(@key, {'one' => 1})
    @redises.hget(@key, 'one').should == '1'
  end

  it "raises an error if given no hash" do
    lambda do
      @redises.mapped_hmset(@key)
    end.should raise_error(ArgumentError)
  end

  it "raises an error if given a an odd length array" do
    lambda do
      @redises.mapped_hmset(@key, [1])
    end.should raise_error(Redis::CommandError)
  end

  it "raises an error if given a non-hash value" do
    lambda do
      @redises.mapped_hmset(@key, 1)
    end.should raise_error(NoMethodError)
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
mock_redis-0.14.1 spec/commands/mapped_hmset_spec.rb
mock_redis-0.14.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.13.2 spec/commands/mapped_hmset_spec.rb
mock_redis-0.13.1 spec/commands/mapped_hmset_spec.rb
mock_redis-0.13.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.12.1 spec/commands/mapped_hmset_spec.rb
mock_redis-0.12.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.11.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.10.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.9.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.8.2 spec/commands/mapped_hmset_spec.rb
mock_redis-0.8.1 spec/commands/mapped_hmset_spec.rb
mock_redis-0.8.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.7.0 spec/commands/mapped_hmset_spec.rb
mock_redis-0.6.6 spec/commands/mapped_hmset_spec.rb
mock_redis-0.6.5 spec/commands/mapped_hmset_spec.rb
mock_redis-0.6.4 spec/commands/mapped_hmset_spec.rb
mock_redis-0.6.3 spec/commands/mapped_hmset_spec.rb
mock_redis-0.6.2 spec/commands/mapped_hmset_spec.rb
mock_redis-0.6.1 spec/commands/mapped_hmset_spec.rb