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

https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 12 lines · 8 code · 4 blank · 0 comment · 0 complexity · 416674e535677e741a6ebae431af5eb6 MD5 · raw file

  1. require 'facets/string/bytes'
  2. require 'test/unit'
  3. class TC_String_Bytes < Test::Unit::TestCase
  4. def test_bytes
  5. s = "abc"
  6. assert_equal( s.unpack('C*'), s.bytes )
  7. end
  8. end