brew/Library/Homebrew/test/cmd/search_spec.rb

31 lines
872 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: false
# frozen_string_literal: true
2018-06-02 02:12:40 +02:00
require "cmd/search"
require "cmd/shared_examples/args_parse"
2018-06-02 02:12:40 +02:00
describe "brew search" do
it_behaves_like "parseable arguments"
2017-02-23 06:04:59 +01:00
# TODO: consider re-enabling when/if we can make these not flaky.
#
# it "falls back to a GitHub tap search when no formula is found",
# :integration_test, :needs_macos, :needs_network do
# setup_test_formula "testball"
# setup_remote_tap "homebrew/cask"
# expect { brew "search", "homebrew/cask/firefox" }
# .to output(/firefox/).to_stdout
# .and be_a_success
# end
# doesn't actually need Linux but only want one integration test per-OS.
it "finds formula in search", :integration_test, :need_linux do
setup_test_formula "testball"
expect { brew "search", "testball" }
.to output(/testball/).to_stdout
.and be_a_success
end
2017-02-23 06:04:59 +01:00
end