Class: RuboCop::Cop::RSpec::VerifiedDoubles
- Inherits:
-
RuboCop::Cop
- Object
- RuboCop::Cop
- RuboCop::Cop::RSpec::VerifiedDoubles
- Includes:
- RSpec::SpecOnly
- Defined in:
- lib/rubocop/cop/rspec/verified_doubles.rb
Overview
Prefer using verifying doubles over normal doubles.
Constant Summary collapse
- MSG =
'Prefer using verifying doubles over normal doubles.'.freeze
Constants included from RSpec::SpecOnly
RSpec::SpecOnly::DEFAULT_CONFIGURATION
Instance Method Summary collapse
Methods included from RSpec::SpecOnly
Instance Method Details
#on_send(node) ⇒ Object
29 30 31 32 33 34 |
# File 'lib/rubocop/cop/rspec/verified_doubles.rb', line 29 def on_send(node) return unless (name = unverified_double(node)) return if name.type.equal?(:sym) && cop_config['IgnoreSymbolicNames'] add_offense(node, :expression) end |