Sha256: da647667814e360ba0dba704f3dbae7230f52d5398201af271b57536ca9f37ab
Contents?: true
Size: 557 Bytes
Versions: 17
Compression:
Stored size: 557 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe Pupa::Processor::DocumentStore do describe '.new' do it 'should use the filesystem' do Pupa::Processor::DocumentStore::FileStore.should_receive(:new).with('/tmp').and_call_original Pupa::Processor::DocumentStore.new('/tmp') end it 'should use Redis' do Pupa::Processor::DocumentStore::RedisStore.should_receive(:new).with('redis://localhost', {}).and_call_original Pupa::Processor::DocumentStore.new('redis://localhost') end end end
Version data entries
17 entries across 17 versions & 1 rubygems