Adjust audit spec.

This commit is contained in:
Markus Reiter 2021-03-31 06:25:33 +02:00
parent d2a3944e70
commit c07205caf2
No known key found for this signature in database
GPG Key ID: 245293B51702655B

View File

@ -795,7 +795,17 @@ describe Cask::Audit, :cask do
end
end
context "when doing the audit" do
context "when doing an offline audit" do
let(:online) { false }
it "does not evaluate the block" do
expect(run).not_to pass
end
end
context "when doing and online audit" do
let(:online) { true }
it "evaluates the block" do
expect(run).to fail_with(/Boom/)
end