Class: ObjectInspect

Inherits:
Object
  • Object
show all
Defined in:
lib/active_mock/object_inspect.rb

Instance Method Summary collapse

Constructor Details

#initialize(class_name, attributes) ⇒ ObjectInspect



3
4
5
6
7
# File 'lib/active_mock/object_inspect.rb', line 3

def initialize(class_name, attributes)
  @class_name = class_name
  @attributes = attributes
  @string     = create_inspections
end

Instance Method Details

#to_sObject



9
10
11
# File 'lib/active_mock/object_inspect.rb', line 9

def to_s
  @string
end

#to_strObject



13
14
15
# File 'lib/active_mock/object_inspect.rb', line 13

def to_str
  @string
end