/vendor/gems/facets-2.4.5/test/core/string/test_chars.rb
https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 12 lines · 8 code · 4 blank · 0 comment · 0 complexity · af937ee1a2a5e124ba75d5735a1e1fed MD5 · raw file
- require 'facets/string/chars'
- require 'test/unit'
- class TC_String_Chars < Test::Unit::TestCase
- def test_chars
- assert_equal( ["a","b","c"], "abc".chars )
- assert_equal( ["a","b","\n","c"], "ab\nc".chars )
- end
- end