Class: Test::Unit::Assertions::AssertionMessage::Inspector
- Inherits:
-
Object
- Object
- Test::Unit::Assertions::AssertionMessage::Inspector
- Includes:
- Comparable
- Defined in:
- lib/test/unit/assertions.rb
Constant Summary collapse
- @@inspector_classes =
[]
Instance Attribute Summary collapse
-
#object ⇒ Object
readonly
Returns the value of attribute object.
Class Method Summary collapse
- .cached_new(object, inspected_objects) ⇒ Object
- .inspector_classes ⇒ Object
- .register_inspector_class(inspector_class) ⇒ Object
- .unregister_inspector_class(inspector_class) ⇒ Object
Instance Method Summary collapse
- #<=>(other) ⇒ Object
-
#initialize(object, inspected_objects = {}) ⇒ Inspector
constructor
A new instance of Inspector.
- #inspect ⇒ Object
- #native_inspect ⇒ Object
- #pretty_print(q) ⇒ Object
- #pretty_print_cycle(q) ⇒ Object
Constructor Details
#initialize(object, inspected_objects = {}) ⇒ Inspector
Returns a new instance of Inspector.
2110 2111 2112 2113 2114 2115 |
# File 'lib/test/unit/assertions.rb', line 2110 def initialize(object, inspected_objects={}) @inspected_objects = inspected_objects @object = object @inspected_objects[@object.__id__] = self @inspect_target = inspect_target end |
Instance Attribute Details
#object ⇒ Object (readonly)
Returns the value of attribute object.
2109 2110 2111 |
# File 'lib/test/unit/assertions.rb', line 2109 def object @object end |
Class Method Details
.cached_new(object, inspected_objects) ⇒ Object
2090 2091 2092 2093 |
# File 'lib/test/unit/assertions.rb', line 2090 def cached_new(object, inspected_objects) inspected_objects[object.__id__] ||= new(object, inspected_objects) end |
.inspector_classes ⇒ Object
2096 2097 2098 |
# File 'lib/test/unit/assertions.rb', line 2096 def inspector_classes @@inspector_classes end |
.register_inspector_class(inspector_class) ⇒ Object
2100 2101 2102 |
# File 'lib/test/unit/assertions.rb', line 2100 def register_inspector_class(inspector_class) @@inspector_classes << inspector_class end |
.unregister_inspector_class(inspector_class) ⇒ Object
2104 2105 2106 |
# File 'lib/test/unit/assertions.rb', line 2104 def unregister_inspector_class(inspector_class) @@inspector_classes.delete(inspector_class) end |
Instance Method Details
#<=>(other) ⇒ Object
2130 2131 2132 2133 2134 2135 2136 |
# File 'lib/test/unit/assertions.rb', line 2130 def <=>(other) if other.is_a?(self.class) @object <=> other.object else @object <=> other end end |
#inspect ⇒ Object
2118 2119 2120 |
# File 'lib/test/unit/assertions.rb', line 2118 def inspect @inspect_target.inspect end |
#native_inspect ⇒ Object
2117 |
# File 'lib/test/unit/assertions.rb', line 2117 alias_method :native_inspect, :inspect |
#pretty_print(q) ⇒ Object
2122 2123 2124 |
# File 'lib/test/unit/assertions.rb', line 2122 def pretty_print(q) @inspect_target.pretty_print(q) end |
#pretty_print_cycle(q) ⇒ Object
2126 2127 2128 |
# File 'lib/test/unit/assertions.rb', line 2126 def pretty_print_cycle(q) @inspect_target.pretty_print_cycle(q) end |