tasks/pact-test.rake in pact-1.0.32 vs tasks/pact-test.rake in pact-1.0.33
- old
+ new
@@ -2,13 +2,18 @@
Pact::VerificationTask.new(:stubbing) do | pact |
pact.uri './spec/support/stubbing.json', :pact_helper => './spec/support/stubbing.rb'
end
+Pact::VerificationTask.new(:stubbing_using_allow) do | pact |
+ pact.uri './spec/support/stubbing.json', :pact_helper => './spec/support/stubbing_using_allow.rb'
+end
+
+
namespace :pact do
desc 'Runs pact tests against a sample application, testing failure and success.'
- task :tests => ['pact:verify:stubbing'] do
+ task :tests => ['pact:verify:stubbing','pact:verify:stubbing_using_allow'] do
require 'pact/provider/pact_spec_runner'
require 'open3'
silent = true
\ No newline at end of file