@@ -26,16 +26,18 @@ module Configuration
26
26
PactVerificationFromBroker . build ( provider_name , provider_version_tags ) do
27
27
pact_broker_base_url base_url , basic_auth_options
28
28
consumer_version_tags tags
29
+ enable_pending true
29
30
verbose true
30
31
end
31
32
end
32
33
33
34
let ( :fetch_pacts ) { double ( 'FetchPacts' ) }
34
- let ( :options ) { basic_auth_options . merge ( verbose : true ) }
35
+ let ( :basic_auth_opts ) { basic_auth_options . merge ( verbose : true ) }
36
+ let ( :options ) { { include_pending_status : true } }
35
37
let ( :consumer_version_selectors ) { [ { tag : 'master' , latest : true } ] }
36
38
37
39
it "creates a instance of Pact::PactBroker::FetchPactURIsForVerification" do
38
- expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( provider_name , consumer_version_selectors , provider_version_tags , base_url , options )
40
+ expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( provider_name , consumer_version_selectors , provider_version_tags , base_url , basic_auth_opts , options )
39
41
subject
40
42
end
41
43
@@ -70,7 +72,7 @@ module Configuration
70
72
let ( :fetch_pacts ) { double ( 'FetchPacts' ) }
71
73
72
74
it "coerces the value into an array" do
73
- expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( anything , [ { tag : "master" , latest : true } ] , anything , anything , anything )
75
+ expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( anything , [ { tag : "master" , latest : true } ] , anything , anything , anything , anything )
74
76
subject
75
77
end
76
78
end
@@ -85,7 +87,7 @@ module Configuration
85
87
let ( :fetch_pacts ) { double ( 'FetchPacts' ) }
86
88
87
89
it "creates an instance of FetchPacts with an emtpy array for the consumer_version_tags" do
88
- expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( anything , [ ] , anything , anything , anything )
90
+ expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( anything , [ ] , anything , anything , anything , anything )
89
91
subject
90
92
end
91
93
end
@@ -100,7 +102,7 @@ module Configuration
100
102
let ( :fetch_pacts ) { double ( 'FetchPacts' ) }
101
103
102
104
it "creates an instance of FetchPactURIsForVerification with verbose: false" do
103
- expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( anything , anything , anything , anything , hash_including ( verbose : false ) )
105
+ expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with ( anything , anything , anything , anything , hash_including ( verbose : false ) , anything )
104
106
subject
105
107
end
106
108
end
0 commit comments