module ActiveSupport::Testing::MethodCallAssertions

def stub_any_instance(klass, instance: klass.new)

def stub_any_instance(klass, instance: klass.new)
  klass.stub(:new, instance) { yield instance }
end