@@ -8,6 +8,7 @@ module Configuration
8
8
let ( :provider_name ) { 'provider-name' }
9
9
let ( :provider_version_tags ) { [ 'master' ] }
10
10
let ( :base_url ) { "http://broker.org" }
11
+ let ( :since ) { "2020-01-01" }
11
12
let ( :basic_auth_options ) do
12
13
{
13
14
username : 'pact_broker_username' ,
@@ -27,7 +28,7 @@ module Configuration
27
28
pact_broker_base_url base_url , basic_auth_options
28
29
consumer_version_tags tags
29
30
enable_pending true
30
- include_wip_pacts_since "2020-01-01"
31
+ include_wip_pacts_since since
31
32
verbose true
32
33
end
33
34
end
@@ -44,14 +45,34 @@ module Configuration
44
45
provider_version_tags ,
45
46
base_url ,
46
47
basic_auth_opts ,
47
- options )
48
+ options
49
+ )
48
50
subject
49
51
end
50
52
51
53
it "adds a pact_uri_source to the provider world" do
52
54
expect ( Pact . provider_world ) . to receive ( :add_pact_uri_source ) . with ( fetch_pacts )
53
55
subject
54
56
end
57
+
58
+ context "when since is a Date" do
59
+ let ( :since ) { Date . new ( 2020 , 1 , 1 ) }
60
+
61
+ it "converts it to a string" do
62
+ expect ( Pact ::PactBroker ::FetchPactURIsForVerification ) . to receive ( :new ) . with (
63
+ anything ,
64
+ anything ,
65
+ anything ,
66
+ anything ,
67
+ anything ,
68
+ {
69
+ include_pending_status : true ,
70
+ include_wip_pacts_since : since . xmlschema
71
+ }
72
+ )
73
+ subject
74
+ end
75
+ end
55
76
end
56
77
57
78
context "with a missing base url" do
0 commit comments