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.
15 lines
325 B
15 lines
325 B
require 'test_helper'
|
|
|
|
describe Cask::CLI do
|
|
it "lists the taps for casks that show up in two taps" do
|
|
Cask::CLI.nice_listing(%w[
|
|
phinze-cask/adium
|
|
phinze-cask/google-chrome
|
|
passcod-cask/adium
|
|
]).must_equal(%w[
|
|
google-chrome
|
|
passcod-cask/adium
|
|
phinze-cask/adium
|
|
])
|
|
end
|
|
end
|
|
|