-
Notifications
You must be signed in to change notification settings - Fork 67
/
execute_spec.rb
46 lines (35 loc) · 1.07 KB
/
execute_spec.rb
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
require 'spec_helper'
require 'test_doubles'
RSpec.describe LightService::Organizer do
class TestExecute
extend LightService::Organizer
def self.call(context)
with(context).reduce(steps)
end
def self.steps
[
TestDoubles::AddsOneAction,
execute(->(ctx) { ctx.number += 1 }),
execute(->(ctx) { ctx[:something] = 'hello' }),
TestDoubles::AddsOne.actions
]
end
end
let(:empty_context) { LightService::Context.make }
it 'calls the lambda in the execute block using the context' do
result = TestExecute.call(:number => 0)
expect(result).to be_success
expect(result.number).to eq(3)
expect(result[:something]).to eq('hello')
end
it 'will not execute a failed context' do
empty_context.fail!('Something bad happened')
result = TestExecute.call(empty_context)
expect(result).to be_failure
end
it 'does not execute over a skipped context' do
empty_context.skip_remaining!('No more needed')
result = TestExecute.call(empty_context)
expect(result).to be_success
end
end