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.
1963 1964 1965 |
# File 'lib/test/unit/assertions.rb', line 1963 def initialize(value) @value = value end |
Instance Method Details
#inspect ⇒ Object
1967 1968 1969 |
# File 'lib/test/unit/assertions.rb', line 1967 def inspect @value.to_s end |