Sha256: 582f21bcbacada8d812977fe6344433dc21d44527a4aa4c03a725a5b680c8ec8
Contents?: true
Size: 1.32 KB
Versions: 7
Compression:
Stored size: 1.32 KB
Contents
require 'spec_helper' describe Picky::Backends::Redis::Basic do let(:client) { stub :client } context 'without options' do let(:index) { described_class.new client, :some_namespace } describe 'load, retrieve, delete' do it 'is nothing they do (at least on the backend)' do index.should_receive(:client).never index.load index.retrieve index.delete end end describe 'empty' do it 'returns the container that is used for indexing' do index.empty.should == {} end end describe 'initial' do it 'is correct' do index.initial.class.should == described_class end end describe 'to_s' do it 'returns the cache path with the default file extension' do index.to_s.should == 'Picky::Backends::Redis::Basic(some_namespace:*)' end end end context 'with options' do let(:index) do described_class.new client, :some_namespace, empty: [], initial: [] end describe 'empty' do it 'returns the container that is used for indexing' do index.empty.should == [] end end describe 'initial' do it 'is correct' do index.initial.class.should == Array end end end end
Version data entries
7 entries across 7 versions & 1 rubygems