Class: RuboCop::Cop::RSpec::MessageSpies
- Includes:
- ConfigurableEnforcedStyle
- Defined in:
- lib/rubocop/cop/rspec/message_spies.rb
Overview
Checks that message expectations are set using spies.
This cop can be configured in your configuration using the ‘EnforcedStyle` option and supports `–auto-gen-config`.
Constant Summary collapse
- MSG_RECEIVE =
'Prefer `receive` for setting message expectations.'
- MSG_HAVE_RECEIVED =
'Prefer `have_received` for setting message '\ 'expectations. Setup `%<source>s` as a spy using '\ '`allow` or `instance_spy`.'
- SUPPORTED_STYLES =
%w[have_received receive].freeze
Constants inherited from Cop
Cop::DEFAULT_CONFIGURATION, Cop::DEFAULT_PATTERN_RE
Constants included from RSpec::Language
RSpec::Language::ALL, RSpec::Language::RSPEC
Instance Method Summary collapse
Methods inherited from Cop
Instance Method Details
#on_send(node) ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/rubocop/cop/rspec/message_spies.rb', line 46 def on_send(node) (node) do |receiver, | return correct_style_detected if preferred_style?() add_offense( , location: :selector, message: (receiver) ) { opposite_style_detected } end end |