class RSpec::Mocks::ConstantMutator::DefinedConstantReplacer

def should_transfer_nested_constants?

def should_transfer_nested_constants?
  return true  if @transfer_nested_constants
  return false unless RSpec::Mocks.configuration.transfer_nested_constants?
  @original_value.respond_to?(:constants) && @mutated_value.respond_to?(:constants)
end