mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
12 lines
283 B
Ruby
12 lines
283 B
Ruby
require 'test_helper'
|
|
|
|
describe Cask::CLI::Search do
|
|
it "lists the available casks that match the search term" do
|
|
lambda {
|
|
Cask::CLI::Search.run('intellij')
|
|
}.must_output <<-OUTPUT.gsub(/^ */, '')
|
|
intellij-community
|
|
intellij-ultimate
|
|
OUTPUT
|
|
end
|
|
end
|