mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e3b6c7c7eb
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
16 lines
353 B
Ruby
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
|