PageRenderTime 48ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/vendor/gems/facets-2.4.5/test/core/string/test_lines.rb

https://bitbucket.org/mediashelf/fedora-migrator
Ruby | 11 lines | 7 code | 4 blank | 0 comment | 0 complexity | 1e3f69eb6221c3a3b9a67d069656710f MD5 | raw file
Possible License(s): GPL-3.0, GPL-2.0, IPL-1.0, AGPL-1.0, LGPL-3.0
  1. require 'facets/string/lines'
  2. require 'test/unit'
  3. class TC_String_Lines < Test::Unit::TestCase
  4. def test_lines
  5. assert_equal( ['a','b','c'], "a\nb\nc".lines )
  6. end
  7. end