1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
usa 2010-05-19 09:10:45 +00:00
parent ec21e8438c
commit 230ffa11d7

View file

@ -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