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.
1640 1641 1642 |
# File 'lib/test/unit/assertions.rb', line 1640 def initialize(value) @value = value end |
Instance Method Details
#inspect ⇒ Object
1644 1645 1646 |
# File 'lib/test/unit/assertions.rb', line 1644 def inspect @value.to_s end |