Sha256: 911baa5ddf5f6deec215cff41e8662472d91c1fdf9cb1ddf101138e4f274d72c
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
require 'spec_helper' describe Picky::Indexers::Base do let(:some_index_or_category) { stub :some_index_or_category, :name => 'some_index_or_category' } let(:indexer) { described_class.new some_index_or_category } describe 'index_or_category' do it 'returns the right thing' do indexer.index_or_category.should == some_index_or_category end end describe 'source' do it 'delegates it to the index or category' do some_index_or_category.should_receive(:source).once.with indexer.source end it 'raises when none is there' do some_index_or_category.should_receive(:source).any_number_of_times.and_return indexer.stub! :process expect { indexer.prepare [] }.to raise_error("Trying to index without a source for some_index_or_category.") end end describe 'prepare' do before(:each) do some_index_or_category.should_receive(:source).any_number_of_times.and_return :some_source end it 'processes' do categories = stub :categories, :empty => nil, :cache => nil indexer.should_receive(:process).once.with categories, anything indexer.prepare categories end it 'calls the right methods on the categories' do indexer.stub! :process categories = stub :categories categories.should_receive(:empty).once.ordered indexer.prepare categories end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
picky-4.0.0pre2 | spec/lib/indexers/base_spec.rb |
picky-4.0.0pre1 | spec/lib/indexers/base_spec.rb |