Class: Test::Unit::Assertions::AssertionMessage::Literal
- Inherits:
-
Object
- Object
- Test::Unit::Assertions::AssertionMessage::Literal
- Defined in:
- lib/test/unit/assertions.rb
Instance Method Summary collapse
-
#initialize(value) ⇒ Literal
constructor
A new instance of Literal.
- #inspect ⇒ Object
Constructor Details
#initialize(value) ⇒ Literal
Returns a new instance of Literal.
1992 1993 1994 |
# File 'lib/test/unit/assertions.rb', line 1992 def initialize(value) @value = value end |
Instance Method Details
#inspect ⇒ Object
1996 1997 1998 |
# File 'lib/test/unit/assertions.rb', line 1996 def inspect @value.to_s end |