Remove unneeded "formulae exist" test

This commit is contained in:
Rylan Polster 2020-11-27 13:14:39 -05:00
parent 44bfbd0112
commit 2256e547d9

View File

@ -1,13 +0,0 @@
# typed: false
# frozen_string_literal: true
shared_examples "formulae exist" do |array|
array.each do |f|
it "#{f} formula exists" do
core_tap = Pathname("#{HOMEBREW_LIBRARY_PATH}/../Taps/homebrew/homebrew-core")
formula_path = core_tap/"Formula/#{f}.rb"
alias_path = core_tap/"Aliases/#{f}"
expect(formula_path.exist? || alias_path.exist?).to be true
end
end
end