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_strip.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

48 lines
1.2 KiB
Ruby

# -*- coding: utf-8 -*-
# frozen_string_literal: false
require_relative "../helper"
class TestCSVParseStrip < Test::Unit::TestCase
extend DifferentOFS
def test_both
assert_equal(["a", "b"],
CSV.parse_line(%Q{ a , b }, strip: true))
end
def test_left
assert_equal(["a", "b"],
CSV.parse_line(%Q{ a, b}, strip: true))
end
def test_right
assert_equal(["a", "b"],
CSV.parse_line(%Q{a ,b }, strip: true))
end
def test_quoted
assert_equal([" a ", " b "],
CSV.parse_line(%Q{" a "," b "}, strip: true))
end
def test_liberal_parsing
assert_equal([" a ", "b", " c ", " d "],
CSV.parse_line(%Q{" a ", b , " c "," d " },
strip: true,
liberal_parsing: true))
end
def test_string
assert_equal(["a", " b"],
CSV.parse_line(%Q{ a , " b" },
strip: " "))
end
def test_no_quote
assert_equal([" a ", " b "],
CSV.parse_line(%Q{" a ", b },
strip: %Q{"},
quote_char: nil))
end
end