Fix incorrect class name in recipe spec

This commit is contained in:
Thibault Jouan 2013-07-28 22:03:01 +00:00
parent 00f6284a2d
commit 16134bf827

View File

@ -29,7 +29,7 @@ module Producer::Core
describe '#evaluate' do
it 'builds a recipe DSL sandbox' do
expect(Recipe).to receive(:new).with(code).and_call_original
expect(Recipe::DSL).to receive(:new).with(code).and_call_original
recipe.evaluate
end
end