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.
 
 

16 lines
349 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
end