Sha256: 693bb8a11e50a1c6b2f50e7106e58298edc697a2bfea6272fe4cb2080f75b5e3
Contents?: true
Size: 827 Bytes
Versions: 1
Compression:
Stored size: 827 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/string/last.rb # # Extracted Fri Feb 16 02:00:37 EST 2007 # Project.rb Test Extraction # require 'facets/core/string/last.rb' require 'test/unit' class TCString < Test::Unit::TestCase def test_last assert_equal( "z", "abcxyz".last ) assert_equal( "cz", "ax by cz".last(' ') ) assert_equal( "c", "a\nb\nc".last("\n") ) end def test_last_eq s = "abc" s.last = "123" assert_equal( "abc123", s ) s = "a\nbc" s.last = "123" assert_equal( "a\nbc123", s ) end def test_last! s = "abc" s.last! assert_equal( "ab", s ) s = "a b c" s.last!(' ') assert_equal( "a b", s ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.8.49 | test/lib/facets/core/string/test_last.rb |