51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
module Producer::Core
|
|
describe Task do
|
|
let(:name) { :some_task }
|
|
let(:block) { proc { } }
|
|
subject(:task) { Task.new(name, &block) }
|
|
|
|
describe '#initialize' do
|
|
it 'assigns the name' do
|
|
expect(task.instance_eval { @name }).to eq name
|
|
end
|
|
|
|
it 'assigns the block' do
|
|
expect(task.instance_eval { @block }).to be block
|
|
end
|
|
end
|
|
|
|
describe '#name' do
|
|
it 'returns its name' do
|
|
expect(task.name).to eq name
|
|
end
|
|
end
|
|
|
|
describe '#evaluate' do
|
|
let(:env) { double('env') }
|
|
|
|
it 'builds a task DSL sandbox' do
|
|
expect(Task::DSL).to receive(:new).with(&block).and_call_original
|
|
task.evaluate(env)
|
|
end
|
|
|
|
it 'evaluates the task DSL sandbox' do
|
|
dsl = double('task DSL').as_null_object
|
|
allow(Task::DSL).to receive(:new) { dsl }
|
|
expect(dsl).to receive(:evaluate).with(env)
|
|
task.evaluate(env)
|
|
end
|
|
|
|
it 'applies DSL sandbox actions' do
|
|
dsl = double('task DSL').as_null_object
|
|
allow(Task::DSL).to receive(:new) { dsl }
|
|
action = double('action')
|
|
allow(dsl).to receive(:actions) { [action] }
|
|
expect(action).to receive(:apply)
|
|
task.evaluate(env)
|
|
end
|
|
end
|
|
end
|
|
end
|