mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
9 lines
219 B
Ruby
9 lines
219 B
Ruby
require 'test_helper'
|
|
|
|
describe 'brew cask --version' do
|
|
it 'respects the --version argument' do
|
|
lambda {
|
|
Cask::CLI::NullCommand.new('--version').run
|
|
}.must_output "#{HOMEBREW_CASK_VERSION}\n"
|
|
end
|
|
end
|