class RuboCop::Cop::RSpec::HooksBeforeExamples

Checks for before/around/after hooks that come after an example.

@example

# Bad

it 'checks what foo does' do
  expect(foo).to be
end

before { prepare }
after { clean_up }

# Good
before { prepare }
after { clean_up }

it 'checks what foo does' do
  expect(foo).to be
end

Constants

MSG

Public Instance Methods

on_block(node) click to toggle source
# File lib/rubocop/cop/rspec/hooks_before_examples.rb, line 39
def on_block(node)
  return unless example_group_with_body?(node)

  check_hooks(node.body) if multiline_block?(node.body)
end

Private Instance Methods

autocorrect(corrector, node, first_example) click to toggle source
# File lib/rubocop/cop/rspec/hooks_before_examples.rb, line 70
def autocorrect(corrector, node, first_example)
  RuboCop::RSpec::Corrector::MoveNode.new(
    node, corrector, processed_source
  ).move_before(first_example)
end
check_hooks(node) click to toggle source
# File lib/rubocop/cop/rspec/hooks_before_examples.rb, line 51
def check_hooks(node)
  first_example = find_first_example(node)
  return unless first_example

  node.each_child_node do |child|
    next if child.sibling_index < first_example.sibling_index
    next unless hook?(child)

    msg = format(MSG, hook: child.method_name)
    add_offense(child, message: msg) do |corrector|
      autocorrect(corrector, child, first_example)
    end
  end
end
find_first_example(node) click to toggle source
# File lib/rubocop/cop/rspec/hooks_before_examples.rb, line 66
def find_first_example(node)
  node.children.find { |sibling| example_or_group?(sibling) }
end
multiline_block?(block) click to toggle source
# File lib/rubocop/cop/rspec/hooks_before_examples.rb, line 47
def multiline_block?(block)
  block.begin_type?
end