Adjust audit spec.

This commit is contained in:
Markus Reiter
2021-04-02 01:55:36 +02:00
parent d2a3944e70
commit c07205caf2
+11 -1
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