Remove Env#current_recipe attribute

This commit is contained in:
Thibault Jouan
2013-08-13 01:36:33 +00:00
parent a5d9ca26f4
commit 53db841b2d
6 changed files with 11 additions and 29 deletions

View File

@@ -66,7 +66,7 @@ module Producer::Core
describe '#env' do
it 'builds an environment with the current recipe' do
expect(Env).to receive(:new).with(cli.recipe)
expect(Env).to receive(:new)
cli.env
end

View File

@@ -5,28 +5,13 @@ module Producer::Core
subject(:env) { Env.new }
describe '#initialize' do
it 'assigns $stdout as the default output' do
expect(env.instance_eval { @output }).to eq $stdout
end
it 'assigns nil as a default target' do
expect(env.target).not_to be
end
context 'without argument' do
it 'assigns no recipe' do
expect(env.current_recipe).not_to be
end
it 'assigns $stdout as the default output' do
expect(env.instance_eval { @output }).to eq $stdout
end
end
context 'when a recipe is given as argument' do
let(:recipe) { Recipe.new(proc { nil }) }
subject(:env) { Env.new(recipe) }
it 'assigns the current recipe' do
expect(env.current_recipe).to be recipe
end
end
end
describe '#output' do