File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -84,15 +84,15 @@ def describe_interaction interaction, options
84
84
before do | example |
85
85
interaction_context . run_once :before do
86
86
Pact . configuration . logger . info "Running example '#{ Pact ::RSpec . full_description ( example ) } '"
87
- set_up_provider_state interaction . provider_state , options [ :consumer ]
87
+ set_up_provider_states interaction . provider_states , options [ :consumer ]
88
88
replay_interaction interaction , options [ :request_customizer ]
89
89
interaction_context . last_response = last_response
90
90
end
91
91
end
92
92
93
93
after do
94
94
interaction_context . run_once :after do
95
- tear_down_provider_state interaction . provider_state , options [ :consumer ]
95
+ tear_down_provider_states interaction . provider_states , options [ :consumer ]
96
96
end
97
97
end
98
98
Original file line number Diff line number Diff line change @@ -35,12 +35,16 @@ def parse_body_from_response rack_response
35
35
end
36
36
end
37
37
38
- def set_up_provider_state provider_state_name , consumer , options = { }
39
- Pact . configuration . provider_state_set_up . call ( provider_state_name , consumer , options )
38
+ def set_up_provider_states provider_states , consumer , options = { }
39
+ provider_states . each do | provider_state |
40
+ Pact . configuration . provider_state_set_up . call ( provider_state . name , consumer , options . merge ( params : provider_state . params ) )
41
+ end
40
42
end
41
43
42
- def tear_down_provider_state provider_state_name , consumer , options = { }
43
- Pact . configuration . provider_state_tear_down . call ( provider_state_name , consumer , options )
44
+ def tear_down_provider_states provider_states , consumer , options = { }
45
+ provider_states . reverse . each do | provider_state |
46
+ Pact . configuration . provider_state_tear_down . call ( provider_state . name , consumer , options . merge ( params : provider_state . params ) )
47
+ end
44
48
end
45
49
46
50
def set_metadata example , key , value
You can’t perform that action at this time.
0 commit comments