ruby/test/csv/parse
Sutou Kouhei d6d60d4287 [ruby/csv] Fix a bug that the same line is used multiple times
GitHub: fix https://github.com/ruby/csv/pull/279

It's happen when:

* `keep_start`/`keep_{drop,back}` are nested.
  (e.g.: `strip: true, skip_lines: /.../`)
* Row separator is `\r\n`.
* `InputScanner` is used. (Small input doesn't use `InputScanner`)

Reported by Gabriel Nagy. Thanks!!!

https://github.com/ruby/csv/commit/183635ab56
2023-06-28 16:37:10 +09:00
..
test_column_separator.rb
test_convert.rb Merge csv-3.2.6 2022-12-09 16:36:22 +09:00
test_each.rb
test_general.rb [ruby/csv] Support RJIT (https://github.com/ruby/csv/pull/281) 2023-05-25 01:44:17 +09:00
test_header.rb Merge csv-3.2.6 2022-12-09 16:36:22 +09:00
test_inputs_scanner.rb [ruby/csv] test: rename Helper to CSVHelper 2023-05-25 01:44:17 +09:00
test_invalid.rb [ruby/csv] Changed line ending handling to consider the combination \r\n as a single entry when row is faulty (https://github.com/ruby/csv/pull/220) 2021-10-24 05:57:33 +09:00
test_liberal_parsing.rb Merge csv-3.2.6 2022-12-09 16:36:22 +09:00
test_quote_char_nil.rb
test_read.rb Merge csv-3.2.6 2022-12-09 16:36:22 +09:00
test_rewind.rb Import CSV 3.1.2 (#2547) 2019-10-12 14:03:21 +09:00
test_row_separator.rb [ruby/csv] test: rename Helper to CSVHelper 2023-05-25 01:44:17 +09:00
test_skip_lines.rb [ruby/csv] Fix a bug that the same line is used multiple times 2023-06-28 16:37:10 +09:00
test_strip.rb [ruby/csv] Add handling for ambiguous parsing options (https://github.com/ruby/csv/pull/226) 2021-12-24 14:35:33 +09:00
test_unconverted_fields.rb