# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/string/lines.rb # # Extracted Fri Feb 16 02:00:37 EST 2007 # Project.rb Test Extraction # require 'facets/core/string/lines.rb' require 'test/unit' class TCString < Test::Unit::TestCase def test_lines assert_equal( ['a','b','c'], "a\nb\nc".lines ) end end