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`.'
Instance Method Summary collapse
Methods inherited from Base
inherited, #on_new_investigation
Methods included from RSpec::Language::NodePattern
Instance Method Details
#on_send(node) ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'lib/rubocop/cop/rspec/any_instance.rb', line 32 def on_send(node) disallowed_stub(node) do |method| add_offense( node, message: format(MSG, method: method) ) end end |