Class: ActiveMocker::ObjectInspect
- Inherits:
-
Object
- Object
- ActiveMocker::ObjectInspect
- Defined in:
- lib/active_mocker/mock/object_inspect.rb
Instance Method Summary collapse
-
#initialize(class_name, attributes) ⇒ ObjectInspect
constructor
A new instance of ObjectInspect.
- #to_s ⇒ Object
- #to_str ⇒ Object
Constructor Details
#initialize(class_name, attributes) ⇒ ObjectInspect
Returns a new instance of ObjectInspect.
4 5 6 7 8 |
# File 'lib/active_mocker/mock/object_inspect.rb', line 4 def initialize(class_name, attributes) @class_name = class_name @attributes = attributes @string = create_inspections end |
Instance Method Details
#to_s ⇒ Object
10 11 12 |
# File 'lib/active_mocker/mock/object_inspect.rb', line 10 def to_s @string end |
#to_str ⇒ Object
14 15 16 |
# File 'lib/active_mocker/mock/object_inspect.rb', line 14 def to_str @string end |