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.
1774 1775 1776 |
# File 'lib/test/unit/assertions.rb', line 1774 def initialize(value) @value = value end |
Instance Method Details
#inspect ⇒ Object
1778 1779 1780 |
# File 'lib/test/unit/assertions.rb', line 1778 def inspect @value.to_s end |