Sha256: df9f6f264d097bc0d1e6325c4a83858a70145189f4d0f8ca31f0516b8f24ed6c

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

require 'spec_helper'

describe Backend::Redis::StringHash do
  
  let(:index) { described_class.new :some_namespace }
    
  describe 'dump' do
    let(:backend) { index.backend }
    it 'dumps correctly' do
      backend.should_receive(:hset).once.ordered.with :some_namespace, :a, 1
      backend.should_receive(:hset).once.ordered.with :some_namespace, :b, 2
      backend.should_receive(:hset).once.ordered.with :some_namespace, :c, 3
      
      index.dump a: 1, b: 2, c: 3
    end
  end
  
  describe 'collection' do
    it 'raises' do
      expect { index.collection :anything }.to raise_error("Can't retrieve a collection from a StringHash. Use Index::Redis::ListHash.")
    end
  end
  
  describe 'member' do
    before(:each) do
      @backend = stub :backend
      index.stub! :backend => @backend
    end
    it 'delegates to the backend' do
      @backend.should_receive(:hget).once.with :some_namespace, :some_symbol
      
      index.member :some_symbol
    end
    it 'returns whatever it gets from the backend' do
      @backend.should_receive(:hget).any_number_of_times.and_return :some_result
      
      index.member(:anything).should == :some_result
    end
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
picky-2.6.0 spec/lib/backend/redis/string_hash_spec.rb