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

17 lines
353 B
Ruby
Raw Normal View History

# -*- 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