Skip to content

Commit 1653128

Browse files
committed
feat: support app_version_branch in MessageProviderDSL
fixes #259
1 parent d512570 commit 1653128

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

lib/pact/provider/configuration/message_provider_dsl.rb

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ def app_version_tags tags
3434
self.tags = tags
3535
end
3636

37+
def app_version_branch branch
38+
self.branch = branch
39+
end
40+
3741
def publish_verification_results publish_verification_results
3842
self.publish_verification_results = publish_verification_results
3943
Pact::RSpec.with_rspec_2 do

spec/lib/pact/provider/configuration/message_provider_dsl_spec.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,15 @@ module Configuration
151151
subject do
152152
described_class.build "some-provider" do
153153
app {}
154+
app_version_branch 'main'
154155
app_version_tags ["dev"]
155156
honours_pacts_from_pact_broker do
156157
end
157158
end
158159
end
159160

160161
it "builds a PactVerificationFromBroker" do
161-
expect(PactVerificationFromBroker).to receive(:build).with("some-provider", nil, ["dev"])
162+
expect(PactVerificationFromBroker).to receive(:build).with("some-provider", 'main', ["dev"])
162163
subject
163164
end
164165
end

0 commit comments

Comments
 (0)