From cb7075a6a2e57bea2c689baa79df15cccbc206b0 Mon Sep 17 00:00:00 2001 From: naruse Date: Sat, 11 Jul 2009 05:46:36 +0000 Subject: * test/ruby/test_io_m17n.rb (test_strip_bom): added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io_m17n.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test') diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb index ce942a8528..aed688e591 100644 --- a/test/ruby/test_io_m17n.rb +++ b/test/ruby/test_io_m17n.rb @@ -1691,5 +1691,19 @@ EOT assert_equal("\"丂\"".force_encoding("ascii-8bit"), content) } end + + def test_strip_bom + with_tmpdir { + text = "\uFEFFa" + %w/UTF-8 UTF-16BE UTF-16LE UTF-32BE UTF-32LE/.each do |name| + path = '%s-bom.txt' % name + content = text.encode(name) + generate_file(path, content) + result = File.read(path, mode: 'rb:utf-7-bom') + assert_equal(content[1].force_encoding("ascii-8bit"), + result.force_encoding("ascii-8bit")) + end + } + end end -- cgit v1.2.3