Sha256: 555bf925590ab3f6d38d6447b85a1cc2369503471675131aa3789227e7608939
Contents?: true
Size: 500 Bytes
Versions: 1
Compression:
Stored size: 500 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/nano/string/succ.rb # # Extracted Fri Oct 28 14:20:18 EDT 2005 # Unit Tools Reap Test Extractor # require 'nano/string/succ.rb' require 'test/unit' class TCString < Test::Unit::TestCase def test_succ assert_equal( "b", "a".succ ) assert_equal( "b", "a".succ(1) ) assert_equal( "c", "a".succ(2) ) assert_equal( "d", "a".succ(3) ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-0.9.0 | test/lib/nano/string/test_succ.rb |