spec/models/processor_spec.rb in toiler-0.5.1 vs spec/models/processor_spec.rb in toiler-0.6.0.pre1
- old
+ new
@@ -5,10 +5,9 @@
let(:fetcher) { double(:fetcher) }
describe "#new" do
it 'initializes properly' do
allow(Toiler).to receive(:fetcher).and_return(fetcher)
- expect(fetcher).to receive(:tell).with(:processor_finished)
processor = described_class.new('default')
expect(processor.executing?).to eq(false)
end
end
end