From 230ffa11d70c90ae1439b8953d8e3d343dc0582b Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 19 May 2010 09:10:45 +0000 Subject: * test/csv/test_interface.rb (test_write_hash): may need to set binary mode when converter is specified. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/csv/test_interface.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/csv') diff --git a/test/csv/test_interface.rb b/test/csv/test_interface.rb index 04d0edc5f1..a58e9c6179 100644 --- a/test/csv/test_interface.rb +++ b/test/csv/test_interface.rb @@ -167,14 +167,14 @@ class TestCSVInterface < Test::Unit::TestCase File.unlink(@path) lines = [{a: 1, b: 2, c: 3}, {a: 4, b: 5, c: 6}] - CSV.open( @path, "w", headers: true, - header_converters: :symbol ) do |csv| + CSV.open( @path, "wb", headers: true, + header_converters: :symbol ) do |csv| csv << lines.first.keys lines.each { |line| csv << line } end - CSV.open( @path, "r", headers: true, - converters: :all, - header_converters: :symbol ) do |csv| + CSV.open( @path, "rb", headers: true, + converters: :all, + header_converters: :symbol ) do |csv| csv.each { |line| assert_equal(lines.shift, line.to_hash) } end end -- cgit v1.2.3