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

Public Class Methods

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

Public Instance Methods

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