method
stub_any_instance
v8.1.1 -
Show latest stable
- Class:
ActiveSupport::Testing::MethodCallAssertions
stub_any_instance(klass, instance: klass.new)private
No documentation available.
# File activesupport/lib/active_support/testing/method_call_assertions.rb, line 64
def stub_any_instance(klass, instance: klass.new)
klass.stub(:new, instance) { yield instance }
end