Class: RuboCop::Cop::RSpec::VerifiedDoubles
- 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.'- RESTRICT_ON_SEND =
%i[double spy].freeze
Instance Method Summary collapse
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_send(node) ⇒ Object
79 80 81 82 83 84 85 86 |
# File 'lib/rubocop/cop/rspec/verified_doubles.rb', line 79 def on_send(node) unverified_double(node) do |name, *_args| return if (name.nil? || hash?(name)) && cop_config['IgnoreNameless'] return if symbol?(name) && cop_config['IgnoreSymbolicNames'] add_offense(node) end end |
#unverified_double(node) ⇒ Object
75 76 77 |
# File 'lib/rubocop/cop/rspec/verified_doubles.rb', line 75 def_node_matcher :unverified_double, <<~PATTERN {(send nil? {:double :spy} $...)} PATTERN |