blob: fcd7e6a16b4c6e80765192785142ef14cb9290dc (
plain)
1
2
3
4
5
6
7
8
9
10
|
describe "brew cask", :integration_test, :needs_macos, :needs_official_cmd_taps do
describe "list" do
it "returns a list of installed Casks" do
setup_remote_tap("caskroom/cask")
shutup do
expect { brew "cask", "list" }.to be_a_success
end
end
end
end
|