2020-04-05 15:22:06 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "rubocops/uses_from_macos"
|
|
|
|
|
|
|
|
describe RuboCop::Cop::FormulaAudit::UsesFromMacos do
|
|
|
|
subject(:cop) { described_class.new }
|
|
|
|
|
|
|
|
it "when auditing uses_from_macos dependencies" do
|
|
|
|
expect_offense(<<~RUBY)
|
|
|
|
class Foo < Formula
|
|
|
|
url "https://brew.sh/foo-1.0.tgz"
|
|
|
|
homepage "https://brew.sh"
|
|
|
|
|
|
|
|
uses_from_macos "postgresql"
|
2023-04-07 17:16:48 +01:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ FormulaAudit/UsesFromMacos: `uses_from_macos` should only be used for macOS dependencies, not postgresql.
|
2020-04-05 15:22:06 +01:00
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
2020-12-02 20:47:53 -05:00
|
|
|
|
|
|
|
include_examples "formulae exist", described_class::ALLOWED_USES_FROM_MACOS_DEPS
|
2020-04-05 15:22:06 +01:00
|
|
|
end
|