blob: d5b81facb6e3bea880232f460ff64294cb396ac7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require "testing_env"
class IntegrationCommandTestCask < IntegrationCommandTestCase
def test_cask
needs_test_cmd_taps
needs_macos
setup_remote_tap("caskroom/cask")
cmd("cask", "list", "--caskroom=#{HOMEBREW_PREFIX}/Caskroom")
end
end
|