aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask/cli
AgeCommit message (Collapse)Author
2017-11-10Add line break to stringMartin Schimandl
2017-11-10Refactor code to reduce characters per lineMartin Schimandl
2017-11-10internal_stanza.rb: Remove obsolete code. Improve detection of missing stanzasMartin Schimandl
internal_stanza_spec.rb: change do ... end blocks to { } blocks
2017-11-10Add another test to increase coverage.Martin Schimandl
2017-11-10combine errors to a single if-statement. fix spec testMartin Schimandl
2017-11-10Fix 'brew style' issuesMartin Schimandl
2017-11-10Change behaviour of 'cask _stanza' command. Add tests for 'cask _stanza' commandMartin Schimandl
2017-10-18Use “squiggly” heredocs.Markus Reiter
2017-10-07Merge pull request #3283 from reitermarkus/cask-loaderMarkus Reiter
Add helper method for Cask fixture paths and refactor CaskLoader.
2017-10-07Add helper method for Cask fixture paths and refactor CaskLoader.Markus Reiter
2017-10-04Refactor tests.Markus Reiter
2017-10-04Directly save artifacts in DSL.Markus Reiter
2017-10-03Refactor `cask/cli` specs.Markus Reiter
2017-10-02stylistic changes for cask info testsAdam Smith
2017-09-30add available languages to cask info commandAdam Smith
add language tests for dsl add fixtures, tests for languages info output add extra lines
2017-09-16List cask full-namesDan Wendorf
`brew cask list` supports the `--full-name` flag which will include the tap name for casks not part of the core caskroom/cask tap. For example, if cask "foo-beta" is installed from the caskroom/versions cask, `brew cask list --full-name` will report the name as "caskroom/versions/foo-beta".
2017-09-11Make Cask commands fail early if a Cask is not found.Markus Reiter
2017-09-10Treat every `Artifact` instance as a single artifact.Markus Reiter
2017-09-10Make `brew cask search` spec deterministic.Markus Reiter
2017-09-02Minor tests formatting changeAlexey Alekhin
2017-08-31Changed warning message as recommended by @reitermarkusAlexey Alekhin
2017-08-26Fixed test for the changed error messageAlexey Alekhin
2017-08-26Added a test for no-macthes output to non-TTYAlexey Alekhin
2017-08-26Unified tests formatting for multiline output matchingAlexey Alekhin
2017-08-26Added tests for cask search with online search failureAlexey Alekhin
2017-07-29Silence all specs by default.Markus Reiter
2017-07-10Add test for non-TTY `brew cask search`.Markus Reiter
2017-07-08Add helper for testing TTY output.Markus Reiter
2017-07-07Output plain list when running `brew cask search` without a TTY.Markus Reiter
2017-07-05Bump `rubocop-cask` version.Markus Reiter
2017-06-13Add `casks` method to iterate through arguments.Markus Reiter
2017-06-13🔨 Refactor Cask exceptions.Markus Reiter
2017-06-12Autocorrect Rubocop Style/SpecialGlobalVars.Mike McQuaid
2017-05-22Fix tests for `CLI::Options` DSL.Markus Reiter
2017-05-22Refactor `CLI::Style`.Markus Reiter
2017-05-22Refactor `CLI::Home`.Markus Reiter
2017-05-22Refactor `CLI::Edit`.Markus Reiter
2017-05-22Refactor `CLI::Create`.Markus Reiter
2017-05-22Refactor `CLI::Cleanup`.Markus Reiter
2017-05-22Refactor `CLI::Audit`.Markus Reiter
2017-05-22Remove Cask’s `CLI#debug?`.Markus Reiter
2017-05-07Revert "Merge pull request #2597 from MikeMcQuaid/vendor-gems"Mike McQuaid
This reverts commit 3e4547f52e7ebec633f8bfefc8a396d944edf908, reversing changes made to 6edf9382bcc1240ad6f97c8b752cfe56cef9965d.
2017-05-07Vendor all Homebrew's gems.Mike McQuaid
Homebrew's actually ended up using a fair few gems. While we want to avoid Bundler at runtime (and this PR still does that, in fact uses Bundler even less at runtime than it did before) writing our own version to use at build-time seems redundant.
2017-04-25Add remote search to `brew cask search`.Markus Reiter
2017-04-23Merge pull request #2362 from joshka/install-uninstall-messagesMarkus Reiter
Install uninstall messages
2017-04-22tests: reduce some noise.Mike McQuaid
- Tweak the way offline skipping happens - Skip more tests that break when offline - Hide more stdout output from tests.
2017-03-19Be a little less specific in cask output testsJoshua McKinney
These tests seemed a little over-specified and were failing on the CI server. Reducing the specificity a little to try to get them to pass.
2017-03-19Hide output from brew cask uninstall testJoshua McKinney
This test showed extraneous info in the test output
2017-03-19Show messages when (un)installing CasksJoshua McKinney
Addresses an issue where it can be unclear at times exactly which part of the (un|re)installation processes is reporting an error. See https://github.com/caskroom/homebrew-cask/issues/30968
2017-03-16Replace `Hbc.load` with `CaskLoader.load`.Markus Reiter