Sha256: d0b89d807cfa9f2f998e00c94e9d345cef1d58fb936e2133900bf7f1565bf2b6
Contents?: true
Size: 626 Bytes
Versions: 1
Compression:
Stored size: 626 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facet/string/words.rb # # Extracted Wed Jan 25 11:25:39 EST 2006 # Unit Tools Reap Test Extractor # require 'facet/string/words.rb' require 'test/unit' class TCString < Test::Unit::TestCase def test_001 x = "a b c\nd e" assert_equal( ['a','b','c','d','e'], x.words ) end def test_002 x = "ab cd\nef" assert_equal( ['ab','cd','ef'], x.words ) end def test_003 x = "ab cd \n ef-gh" assert_equal( ['ab','cd','ef-gh'], x.words ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.0.3 | packages/core/test/lib/facet/string/test_words.rb |