Method: RuboCop::Cop::RSpec::ImplicitExpect#on_send

Defined in:
lib/rubocop/cop/rspec/implicit_expect.rb

#on_send(node) ⇒ Object

[View source]

49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/rubocop/cop/rspec/implicit_expect.rb', line 49

def on_send(node)
  return unless (source_range = offending_expect(node))

  expectation_source = source_range.source

  if expectation_source.start_with?(style.to_s)
    correct_style_detected
  else
    opposite_style_detected

    msg = offense_message(expectation_source)
    add_offense(source_range, message: msg) do |corrector|
      replacement = replacement_source(expectation_source)
      corrector.replace(source_range, replacement)
    end
  end
end