1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# frozen_string_literal: true
RSpec.describe QA::Scenario::Actable do
subject do
Class.new do
include QA::Scenario::Actable
attr_accessor :something
def do_something(arg = nil)
"some#{arg}"
end
end
end
describe '.act' do
it 'provides means to run steps' do
result = subject.act { do_something }
expect(result).to eq 'some'
end
it 'supports passing variables' do
result = subject.act('thing') do |variable|
do_something(variable)
end
expect(result).to eq 'something'
end
it 'returns value from the last method' do
result = subject.act { 'test' }
expect(result).to eq 'test'
end
end
describe '.perform' do
it 'makes it possible to pass binding' do
variable = 'something'
result = subject.perform do |object|
object.something = variable
end
expect(result).to eq 'something'
end
end
end
|