homebrew-cask-versions/test/cask/cli/version_test.rb
2014-09-16 10:04:47 -04:00

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