Sha256: 287ee8601cde45e2eb4762e856cd2ea7fe472d66e975617070f050feb9833b3d

Contents?: true

Size: 494 Bytes

Versions: 8

Compression:

Stored size: 494 Bytes

Contents

# encoding: utf-8

module MultibyteTestHelpers
  UNICODE_STRING = 'こにちわ'
  ASCII_STRING = 'ohayo'
  BYTE_STRING = "\270\236\010\210\245".force_encoding("ASCII-8BIT")

  def chars(str)
    ActiveSupport::Multibyte::Chars.new(str)
  end

  def inspect_codepoints(str)
    str.to_s.unpack("U*").map{|cp| cp.to_s(16) }.join(' ')
  end

  def assert_equal_codepoints(expected, actual, message=nil)
    assert_equal(inspect_codepoints(expected), inspect_codepoints(actual), message)
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
rails-logstasher-0.1.4 test/support/multibyte_test_helpers.rb
rails-logstasher-0.1.3 test/support/multibyte_test_helpers.rb
rails-logstasher-0.1.2 test/support/multibyte_test_helpers.rb
yarder-0.1.0 test/support/multibyte_test_helpers.rb
rails-logstasher-0.1.1 test/support/multibyte_test_helpers.rb
rails-logstasher-0.1.0 test/support/multibyte_test_helpers.rb
yarder-0.0.2 test/support/multibyte_test_helpers.rb
yarder-0.0.1 test/support/multibyte_test_helpers.rb