brew/Library/Homebrew/test/rubocops/caveats_cop_spec.rb

21 lines
557 B
Ruby
Raw Normal View History

require_relative "../../rubocops/caveats_cop"
describe RuboCop::Cop::FormulaAudit::Caveats do
subject(:cop) { described_class.new }
context "When auditing caveats" do
it "When there is setuid mentioned in caveats" do
2017-10-21 03:12:50 +02:00
expect_offense(<<~RUBY)
2017-10-15 02:28:32 +02:00
class Foo < Formula
homepage "http://example.com/foo"
url "http://example.com/foo-1.0.tgz"
def caveats
"setuid"
2017-10-21 03:12:50 +02:00
^^^^^^ Don\'t recommend setuid in the caveats, suggest sudo instead.
2017-10-15 02:28:32 +02:00
end
end
2017-10-21 03:12:50 +02:00
RUBY
end
end
end