Browse Source

demockify install_test

phinze 12 years ago
parent
commit
067973074d
  1. 16
      test/cli/install_test.rb

16
test/cli/install_test.rb

@ -2,19 +2,17 @@ require 'test_helper'
describe Cask::CLI::Install do
it "allows install of multiple casks at once" do
Cask::Installer.stubs(:install)
Cask.expects(:load).with('adium')
Cask.expects(:load).with('google-chrome')
Cask::CLI::Install.run('adium', 'google-chrome')
shutup do
Cask::CLI::Install.run('local-transmission', 'local-caffeine')
end
Cask.load('local-transmission').must_be :installed?
Cask.load('local-caffeine').must_be :installed?
end
it "properly handles casks that are not present" do
Cask::Installer.stubs(:install)
Cask.expects(:load).with('adium')
Cask.expects(:load).with('what-the-balls').raises(CaskUnavailableError.new('what-the-balls'))
Cask.expects(:load).with('google-chrome')
lambda {
Cask::CLI::Install.run('adium', 'what-the-balls', 'google-chrome')
Cask::CLI::Install.run('what-the-balls')
}.must_output <<-OUTPUT.gsub(/^ */, '')
Error: No available cask for what-the-balls
OUTPUT

Loading…
Cancel
Save