mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
parent
8c0edbd79d
commit
198281a71d
2 changed files with 31 additions and 1 deletions
|
@ -45,4 +45,34 @@ class TestCSVParseStrip < Test::Unit::TestCase
|
|||
strip: %Q{"},
|
||||
quote_char: nil))
|
||||
end
|
||||
|
||||
def test_do_not_strip_cr
|
||||
assert_equal([
|
||||
["a", "b "],
|
||||
["a", "b "],
|
||||
],
|
||||
CSV.parse(%Q{"a" ,"b " \r} +
|
||||
%Q{"a" ,"b " \r},
|
||||
strip: true))
|
||||
end
|
||||
|
||||
def test_do_not_strip_lf
|
||||
assert_equal([
|
||||
["a", "b "],
|
||||
["a", "b "],
|
||||
],
|
||||
CSV.parse(%Q{"a" ,"b " \n} +
|
||||
%Q{"a" ,"b " \n},
|
||||
strip: true))
|
||||
end
|
||||
|
||||
def test_do_not_strip_crlf
|
||||
assert_equal([
|
||||
["a", "b "],
|
||||
["a", "b "],
|
||||
],
|
||||
CSV.parse(%Q{"a" ,"b " \r\n} +
|
||||
%Q{"a" ,"b " \r\n},
|
||||
strip: true))
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue