Class: RuboCop::Cop::RSpec::AnyInstance
- Defined in:
- lib/rubocop/cop/rspec/any_instance.rb
Overview
Check that instances are not being stubbed globally.
Prefer instance doubles over stubbing any instance of a class
Constant Summary collapse
- MSG =
'Avoid stubbing using `%<method>s`.'
- RESTRICT_ON_SEND =
%i[ any_instance allow_any_instance_of expect_any_instance_of ].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
34 35 36 |
# File 'lib/rubocop/cop/rspec/any_instance.rb', line 34 def on_send(node) add_offense(node, message: format(MSG, method: node.method_name)) end |