@@ -11,8 +11,9 @@ module VerificationResults
11
11
12
12
let ( :verification_result ) { double ( 'VerificationResult' ) }
13
13
let ( :provider_configuration ) do
14
- double ( 'provider_configuration' , application_version : '1.2.3' )
14
+ double ( 'provider_configuration' , application_version : '1.2.3' , build_url : ci_build )
15
15
end
16
+ let ( :ci_build ) { 'http://ci/build/1' }
16
17
let ( :pact_source_1 ) do
17
18
instance_double ( 'Pact::Provider::PactSource' , uri : pact_uri_1 , consumer_contract : consumer_contract )
18
19
end
@@ -59,19 +60,25 @@ module VerificationResults
59
60
}
60
61
}
61
62
}
62
- expect ( VerificationResult ) . to receive ( :new ) . with ( anything , anything , anything , expected_test_results_hash )
63
+ expect ( VerificationResult ) . to receive ( :new ) . with ( anything , anything , anything , expected_test_results_hash , anything )
63
64
subject
64
65
end
65
66
66
67
it "creates a VerificationResult with the provider application version" do
67
68
expect ( provider_configuration ) . to receive ( :application_version )
68
- expect ( VerificationResult ) . to receive ( :new ) . with ( anything , anything , '1.2.3' , anything )
69
+ expect ( VerificationResult ) . to receive ( :new ) . with ( anything , anything , '1.2.3' , anything , anything )
70
+ subject
71
+ end
72
+
73
+ it "creates a VerificationResult with the provider ci build url" do
74
+ expect ( provider_configuration ) . to receive ( :build_url )
75
+ expect ( VerificationResult ) . to receive ( :new ) . with ( anything , anything , anything , anything , ci_build )
69
76
subject
70
77
end
71
78
72
79
context "when every interaction has been executed" do
73
80
it "sets publishable to true" do
74
- expect ( VerificationResult ) . to receive ( :new ) . with ( true , anything , anything , anything )
81
+ expect ( VerificationResult ) . to receive ( :new ) . with ( true , anything , anything , anything , anything )
75
82
subject
76
83
end
77
84
end
@@ -81,14 +88,14 @@ module VerificationResults
81
88
let ( :interactions ) { [ interaction_1 , interaction_2 ] }
82
89
83
90
it "sets publishable to false" do
84
- expect ( VerificationResult ) . to receive ( :new ) . with ( false , anything , anything , anything )
91
+ expect ( VerificationResult ) . to receive ( :new ) . with ( false , anything , anything , anything , anything )
85
92
subject
86
93
end
87
94
end
88
95
89
96
context "when all the examples passed" do
90
97
it "sets the success to true" do
91
- expect ( VerificationResult ) . to receive ( :new ) . with ( anything , true , anything , anything )
98
+ expect ( VerificationResult ) . to receive ( :new ) . with ( anything , true , anything , anything , anything )
92
99
subject
93
100
end
94
101
end
@@ -99,7 +106,7 @@ module VerificationResults
99
106
end
100
107
101
108
it "sets the success to false" do
102
- expect ( VerificationResult ) . to receive ( :new ) . with ( anything , false , anything , anything )
109
+ expect ( VerificationResult ) . to receive ( :new ) . with ( anything , false , anything , anything , anything )
103
110
subject
104
111
end
105
112
0 commit comments