module RSpec::Mocks::TestDoubleFormatter

@private

Constants

IVAR_GET

@private

Public Class Methods

format(dbl, unwrap=false) click to toggle source
# File lib/rspec/mocks/test_double.rb, line 138
def self.format(dbl, unwrap=false)
  format = "#{type_desc(dbl)}#{verified_module_desc(dbl)} #{name_desc(dbl)}"
  return format if unwrap
  "#<#{format}>"
end