Skip to content

Commit 303077d

Browse files
committed
feat: allow verification task to set just a pact_helper without a URI
1 parent f839391 commit 303077d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/pact/tasks/verification_task.rb

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class VerificationTask < ::Rake::TaskLib
3131
attr_reader :pact_spec_configs
3232
attr_accessor :rspec_opts
3333
attr_accessor :ignore_failures
34+
attr_accessor :_pact_helper
3435

3536
def initialize(name)
3637
@rspec_opts = nil
@@ -41,6 +42,10 @@ def initialize(name)
4142
rake_task
4243
end
4344

45+
def pact_helper(pact_helper)
46+
@pact_spec_configs << { pact_helper: pact_helper }
47+
end
48+
4449
def uri(uri, options = {})
4550
@pact_spec_configs << {uri: uri, pact_helper: options[:pact_helper]}
4651
end
@@ -82,6 +87,7 @@ def rake_task
8287
Pact::TaskHelper.handle_verification_failure do
8388
exit_statuses.count{ | status | status != 0 }
8489
end
90+
8591
end
8692
end
8793
end

0 commit comments

Comments
 (0)