mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
11 lines
280 B
Ruby
11 lines
280 B
Ruby
require "helper/integration_command_test_case"
|
|
|
|
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
|