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

* lib/csv.rb: Symbol HeaderConverter: strip leading/trailing space.

Reported by Skye Shaw
  [Fixes GH-575]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45498 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
jeg2 2014-04-01 14:40:48 +00:00
parent 7c4d4e1eb2
commit 1170b057e0
3 changed files with 12 additions and 5 deletions

View file

@ -217,9 +217,10 @@ class TestCSV::Headers < TestCSV
end
def test_builtin_symbol_converter
csv = CSV.parse( "One,TWO Three", headers: true,
return_headers: true,
header_converters: :symbol )
# Note that the trailing space is intentional
csv = CSV.parse( "One,TWO Three ", headers: true,
return_headers: true,
header_converters: :symbol )
assert_equal([:one, :two_three], csv.headers)
end