class RSpec::Mocks::NamedObjectReference

@see DirectObjectReference
by the string.
Represents a reference to the object named (via a constant lookup)
{ExampleMethods#instance_double}, or {ExampleMethods#class_double}.
and when a string, named class or named module is passed to
Used when a string is passed to {ExampleMethods#object_double},
An implementation of rspec-mocks’ reference interface.

def const_to_replace

Returns:
  • (String) - the constant name to replace with a double.
def const_to_replace
  @const_name
end

def defined?

Returns:
  • (Boolean) - true if the named constant is defined, false otherwise.
def defined?
  !!object
end

def initialize(const_name)

Parameters:
  • const_name (String) -- constant name
def initialize(const_name)
  @const_name = const_name
end

def object

def object
  return @object if defined?(@object)
  @object = Constant.original(@const_name).original_value
end

def target

Returns:
  • (Object, nil) - the target of the verifying double (the named object), or
def target
  object
end

def when_loaded

Other tags:
    Yield: - the target object
def when_loaded
  yield object if object
end