mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
13 lines
297 B
Ruby
13 lines
297 B
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
describe "brew cask", :integration_test, :needs_macos, :needs_network do
|
|
describe "list" do
|
|
it "returns a list of installed Casks" do
|
|
setup_remote_tap "homebrew/cask"
|
|
|
|
expect { brew "cask", "list" }.to be_a_success
|
|
end
|
|
end
|
|
end
|