2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-26 19:41:14 +01:00
|
|
|
require "rubocops/caveats"
|
2017-05-22 13:09:49 +05:30
|
|
|
|
|
|
|
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
|
2018-11-28 20:51:55 +01:00
|
|
|
homepage "https://brew.sh/foo"
|
|
|
|
url "https://brew.sh/foo-1.0.tgz"
|
2017-10-15 02:28:32 +02:00
|
|
|
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
|
2017-05-22 13:09:49 +05:30
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-05-22 13:09:49 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|