File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,16 @@ def parse_body_from_response rack_response
36
36
end
37
37
38
38
def set_up_provider_states provider_states , consumer , options = { }
39
+ # If there are no provider state, execute with an nil state to ensure global and base states are executed
40
+ Pact . configuration . provider_state_set_up . call ( nil , consumer , options ) if provider_states . nil? || provider_states . empty?
39
41
provider_states . each do | provider_state |
40
42
Pact . configuration . provider_state_set_up . call ( provider_state . name , consumer , options . merge ( params : provider_state . params ) )
41
43
end
42
44
end
43
45
44
46
def tear_down_provider_states provider_states , consumer , options = { }
47
+ # If there are no provider state, execute with an nil state to ensure global and base states are executed
48
+ Pact . configuration . provider_state_tear_down . call ( nil , consumer , options ) if provider_states . nil? || provider_states . empty?
45
49
provider_states . reverse . each do | provider_state |
46
50
Pact . configuration . provider_state_tear_down . call ( provider_state . name , consumer , options . merge ( params : provider_state . params ) )
47
51
end
Original file line number Diff line number Diff line change 1
1
# Remember to bump pact-provider-proxy when this changes major version
2
2
module Pact
3
- VERSION = "1.36.0 "
3
+ VERSION = "1.36.1 "
4
4
end
You can’t perform that action at this time.
0 commit comments