summaryrefslogtreecommitdiff
path: root/test/csv/parse/test_row_separator.rb
blob: 5fd8e751528f19b0de1e37673e104b79f3008ddc (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 CSVHelper

  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