brew/Library/Homebrew/test/cmd/casks_spec.rb
Mike McQuaid 76c4eb60ee
test/cmd: add more shell tests.
This should help ensure that these don't regress.
2025-06-03 15:24:19 +01:00

10 lines
232 B
Ruby

# frozen_string_literal: true
RSpec.describe "brew casks", type: :system do
it "prints all installed Casks", :integration_test do
expect { brew_sh "casks" }
.to be_a_success
.and not_to_output.to_stderr
end
end