summaryrefslogtreecommitdiff
path: root/test/csv/parse/test_row_separator.rb
blob: eaf6adc9101ecb3f2428805508e481441a95674e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- 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