class RBS::UnitTest::Convertibles::ToStr

Public Class Methods

new(value = "") click to toggle source
# File rbs-3.4.0/lib/rbs/unit_test/convertibles.rb, line 84
def initialize(value = "")
  @value = value
end

Public Instance Methods

to_str() click to toggle source
# File rbs-3.4.0/lib/rbs/unit_test/convertibles.rb, line 88
def to_str
  @value
end