We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f839391 commit 303077dCopy full SHA for 303077d
lib/pact/tasks/verification_task.rb
@@ -31,6 +31,7 @@ class VerificationTask < ::Rake::TaskLib
31
attr_reader :pact_spec_configs
32
attr_accessor :rspec_opts
33
attr_accessor :ignore_failures
34
+ attr_accessor :_pact_helper
35
36
def initialize(name)
37
@rspec_opts = nil
@@ -41,6 +42,10 @@ def initialize(name)
41
42
rake_task
43
end
44
45
+ def pact_helper(pact_helper)
46
+ @pact_spec_configs << { pact_helper: pact_helper }
47
+ end
48
+
49
def uri(uri, options = {})
50
@pact_spec_configs << {uri: uri, pact_helper: options[:pact_helper]}
51
@@ -82,6 +87,7 @@ def rake_task
82
87
Pact::TaskHelper.handle_verification_failure do
83
88
exit_statuses.count{ | status | status != 0 }
84
89
90
85
91
86
92
93
0 commit comments