You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
781 B
32 lines
781 B
require 'test_helper'
|
|
|
|
describe Cask::CLI::List do
|
|
it "lists the installed casks in a pretty fashion" do
|
|
shutup do
|
|
Cask::CLI::Install.run('local-transmission', 'local-caffeine')
|
|
end
|
|
|
|
lambda {
|
|
Cask::CLI::List.run
|
|
}.must_output <<-OUTPUT.gsub(/^ */, '')
|
|
local-caffeine
|
|
local-transmission
|
|
OUTPUT
|
|
end
|
|
|
|
it "lists the taps for casks that show up in two taps" do
|
|
skip("need to move this implementation to an easier to test location")
|
|
Cask.stubs(:installed).returns(%w[
|
|
phinze-cask/adium
|
|
phinze-cask/google-chrome
|
|
passcod-cask/adium
|
|
])
|
|
lambda {
|
|
Cask::CLI::List.run
|
|
}.must_output <<-OUTPUT.gsub(/^ */, '')
|
|
google-chrome
|
|
passcod-cask/adium
|
|
phinze-cask/adium
|
|
OUTPUT
|
|
end
|
|
end
|
|
|