class Test::Unit::Assertions::AssertionMessage::Literal

Public Class Methods

new(value) click to toggle source
# File test-unit-3.5.7/lib/test/unit/assertions.rb, line 2273
def initialize(value)
  @value = value
end

Public Instance Methods

inspect() click to toggle source
# File test-unit-3.5.7/lib/test/unit/assertions.rb, line 2277
def inspect
  @value.to_s
end