File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class ConsumerContractBuilder
15
15
16
16
def initialize ( attributes )
17
17
@interaction_builder = nil
18
- @consumer_contract_details = {
18
+ @consumer_contract = {
19
19
consumer : { name : attributes [ :consumer_name ] } ,
20
20
provider : { name : attributes [ :provider_name ] } ,
21
21
pactfile_write_mode : attributes [ :pactfile_write_mode ] . to_s ,
@@ -42,7 +42,7 @@ def log msg
42
42
end
43
43
44
44
def write_pact
45
- mock_service_client . write_pact @consumer_contract_details
45
+ mock_service_client . write_pact @consumer_contract
46
46
end
47
47
48
48
def wait_for_interactions options = { }
Original file line number Diff line number Diff line change @@ -62,6 +62,17 @@ module Consumer
62
62
end
63
63
end
64
64
65
+ describe "#consumer_contract" do
66
+ it "returns the consumer contract" do
67
+ expect ( subject . consumer_contract ) . to eq (
68
+ consumer : { name : consumer_name } ,
69
+ provider : { name : provider_name } ,
70
+ pactfile_write_mode : 'overwrite' ,
71
+ pact_dir : pact_dir
72
+ )
73
+ end
74
+ end
75
+
65
76
describe "#mock_service_base_url" do
66
77
67
78
subject do
You can’t perform that action at this time.
0 commit comments