22 lines
475 B
Ruby
22 lines
475 B
Ruby
require 'spec_helper'
|
|
|
|
module Producer::Core
|
|
describe Action do
|
|
let(:env) { double 'env' }
|
|
let(:arguments) { [:some, :arguments] }
|
|
subject(:action) { Action.new(env, *arguments) }
|
|
|
|
describe '#env' do
|
|
it 'returns the assigned env' do
|
|
expect(action.env).to be env
|
|
end
|
|
end
|
|
|
|
describe '#arguments' do
|
|
it 'returns the assigned arguments' do
|
|
expect(action.arguments).to eq arguments
|
|
end
|
|
end
|
|
end
|
|
end
|