forked from adomokos/light-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iterate_spec.rb
37 lines (27 loc) · 1.07 KB
/
iterate_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
require 'spec_helper'
require 'test_doubles'
RSpec.describe LightService::Organizer do
let(:empty_context) { LightService::Context.make }
it 'reduces each item of a collection and singularizes the collection key' do
result = TestDoubles::TestIterate.call(:number => 1,
:counters => [1, 2, 3, 4])
expect(result).to be_success
expect(result.number).to eq(5)
end
it 'accepts a single action or organizer' do
result = TestDoubles::TestIterate.call_single(:number => 1,
:counters => [1, 2, 3, 4])
expect(result).to be_success
expect(result.number).to eq(5)
end
it 'will not iterate over a failed context' do
empty_context.fail!('Something bad happened')
result = TestDoubles::TestIterate.call(empty_context)
expect(result).to be_failure
end
it 'does not iterate over a skipped context' do
empty_context.skip_remaining!('No more needed')
result = TestDoubles::TestIterate.call(empty_context)
expect(result).to be_success
end
end