class RSpec::Mocks::InstanceVerifyingDouble

A mock providing a custom proxy that can verify the validity of any method stubs or expectations against the public instance methods of the given class.

@private

Public Instance Methods

# File rspec-mocks/lib/rspec/mocks/verifying_double.rb, line 77
def __build_mock_proxy(order_group)
  VerifyingProxy.new(self, order_group,
                     @doubled_module,
                     InstanceMethodReference
  )
end