1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# frozen_string_literal: true
module RuboCop
module Cop
module RSpec
# Checks that the first argument to an example group is not empty.
#
# @example
# # bad
# describe do
# end
#
# RSpec.describe do
# end
#
# # good
# describe TestedClass do
# end
#
# describe "A feature example" do
# end
#
class MissingExampleGroupArgument < Base
MSG = 'The first argument to `%<method>s` should not be empty.'
def on_block(node) # rubocop:disable InternalAffairs/NumblockHandler
return unless example_group?(node)
return if node.send_node.arguments?
add_offense(node, message: format(MSG, method: node.method_name))
end
end
end
end
end
|