Skip to content

Commit 43bce74

Browse files
committed
fix: use .empty? in handling_no_pacts_found
1 parent 63809e9 commit 43bce74

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/pact/pact_broker/fetch_pact_uris_for_verification.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ def log_message
101101

102102
def handling_no_pacts_found
103103
pacts_found = yield
104-
raise "No pacts found to verify" if pacts_found.blank? && options[:fail_if_no_pacts_found] != false
105-
if pacts_found.blank? && options[:fail_if_no_pacts_found] == false
104+
raise "No pacts found to verify" if pacts_found.empty? && options[:fail_if_no_pacts_found] != false
105+
if pacts_found.empty? && options[:fail_if_no_pacts_found] == false
106106
Pact.configuration.output_stream.puts "WARN: No pacts found to verify & fail_if_no_pacts_found is set to false."
107107
end
108108
pacts_found

spec/lib/pact/pact_broker/fetch_pact_uris_for_verification_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module PactBroker
4949

5050
context "when the beta:provider-pacts-for-verification relation does not exist" do
5151
before do
52-
allow(FetchPacts).to receive(:call)
52+
allow(FetchPacts).to receive(:call).and_return([])
5353
stub_request(:get, "http://broker.org/").to_return(status: 200, body: response_body, headers: response_headers)
5454
end
5555

0 commit comments

Comments
 (0)