brew/Library/Homebrew/test/cmd/cask_spec.rb

11 lines
289 B
Ruby
Raw Normal View History

2017-02-23 05:59:55 +01:00
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")
2017-03-05 17:11:46 +01:00
shutup do
expect { brew "cask", "list" }.to be_a_success
end
2017-02-23 05:59:55 +01:00
end
end
end