Class: RuboCop::Cop::RSpec::EmptyLineAfterExampleGroup
- Extended by:
- AutoCorrector
- Includes:
- EmptyLineSeparation
- Defined in:
- lib/rubocop/cop/rspec/empty_line_after_example_group.rb
Overview
Checks if there is an empty line after example group blocks.
Constant Summary collapse
- MSG =
'Add an empty line after `%<example_group>s`.'
Instance Method Summary collapse
-
#on_block(node) ⇒ Object
rubocop:disable InternalAffairs/NumblockHandler.
Methods included from EmptyLineSeparation
#last_child?, #missing_separating_line, #missing_separating_line_offense, #offending_loc
Methods included from FinalEndLocation
Methods inherited from Base
inherited, #on_new_investigation
Methods included from RSpec::Language
#example?, #example_group?, #example_group_with_body?, #explicit_rspec?, #hook?, #include?, #let?, #rspec?, #shared_group?, #spec_group?, #subject?
Instance Method Details
#on_block(node) ⇒ Object
rubocop:disable InternalAffairs/NumblockHandler
32 33 34 35 36 37 38 |
# File 'lib/rubocop/cop/rspec/empty_line_after_example_group.rb', line 32 def on_block(node) # rubocop:disable InternalAffairs/NumblockHandler return unless spec_group?(node) (node) do |method| format(MSG, example_group: method) end end |