mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
16 lines
349 B
Ruby
16 lines
349 B
Ruby
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
|