Sha256: fb590626602d7f78e84cde3b5f1970b967ca3265f7ebdec0d87ce3e6d886afb0
Contents?: true
Size: 1.11 KB
Versions: 30
Compression:
Stored size: 1.11 KB
Contents
require 'spec_helper' describe Picky::Backends::Redis::String do let(:client) { double :client } let(:backend) { described_class.new client, :some_namespace } describe 'dump' do it 'dumps correctly' do client.should_receive(:del).once.ordered.with :some_namespace client.should_receive(:hset).once.ordered.with :some_namespace, :a, 1 client.should_receive(:hset).once.ordered.with :some_namespace, :b, 2 client.should_receive(:hset).once.ordered.with :some_namespace, :c, 3 backend.dump a: 1, b: 2, c: 3 end end describe 'member' do it 'forwards to the backend' do client.should_receive(:hget).once.with :some_namespace, :some_symbol backend[:some_symbol] end it 'returns whatever it gets from the backend' do client.should_receive(:hget).at_least(1).and_return :some_result backend[:anything].should == :some_result end end describe 'to_s' do it 'returns the cache path with the default file extension' do backend.to_s.should == 'Picky::Backends::Redis::String(some_namespace:*)' end end end
Version data entries
30 entries across 30 versions & 1 rubygems