forked from adomokos/light-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reduce_if_spec.rb
51 lines (38 loc) · 1.15 KB
/
reduce_if_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
47
48
49
50
51
require 'spec_helper'
require 'test_doubles'
RSpec.describe LightService::Organizer do
class TestReduceIf
extend LightService::Organizer
def self.call(context)
with(context).reduce(actions)
end
def self.actions
[
TestDoubles::AddsOneAction,
reduce_if(->(ctx) { ctx.number == 1 },
TestDoubles::AddsOneAction)
]
end
end
let(:empty_context) { LightService::Context.make }
it 'reduces if the block evaluates to true' do
result = TestReduceIf.call(:number => 0)
expect(result).to be_success
expect(result[:number]).to eq(2)
end
it 'does not reduce if the block evaluates to false' do
result = TestReduceIf.call(:number => 2)
expect(result).to be_success
expect(result[:number]).to eq(3)
end
it 'will not reduce over a failed context' do
empty_context.fail!('Something bad happened')
result = TestReduceIf.call(empty_context)
expect(result).to be_failure
end
it 'does not reduce over a skipped context' do
empty_context.skip_remaining!('No more needed')
result = TestReduceIf.call(empty_context)
expect(result).to be_success
end
end