1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/csv/parse/test_row_separator.rb
kou e3b6c7c7eb Import CSV 3.0.8
This includes performance improvements and backward incompatibility
fixes.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67560 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2019-04-14 21:01:51 +00:00

16 lines
353 B
Ruby

# -*- coding: utf-8 -*-
# frozen_string_literal: false
require_relative "../helper"
class TestCSVParseRowSeparator < Test::Unit::TestCase
extend DifferentOFS
include Helper
def test_multiple_characters
with_chunk_size("1") do
assert_equal([["a"], ["b"]],
CSV.parse("a\r\nb\r\n", row_sep: "\r\n"))
end
end
end