Sha256: 8ba80024f50a630171edc116f7cf8d4756a5c3472d82b97857b9a8383210c877
Contents?: true
Size: 768 Bytes
Versions: 26
Compression:
Stored size: 768 Bytes
Contents
# 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) 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
Version data entries
26 entries across 24 versions & 2 rubygems