Skip to content

Commit 22e62bc

Browse files
authored
test: rename Helper to CSVHelper (#278)
Rename it so that in ruby/ruby, the generic name Helper is not used.
1 parent cc76ffb commit 22e62bc

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

test/csv/helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
require_relative "../lib/with_different_ofs"
77

8-
module Helper
8+
module CSVHelper
99
def with_chunk_size(chunk_size)
1010
chunk_size_keep = ENV["CSV_PARSER_SCANNER_TEST_CHUNK_SIZE"]
1111
begin

test/csv/parse/test_inputs_scanner.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require_relative "../helper"
22

33
class TestCSVParseInputsScanner < Test::Unit::TestCase
4-
include Helper
4+
include CSVHelper
55

66
def test_scan_keep_over_chunks_nested_back
77
input = CSV::Parser::UnoptimizedStringIO.new("abcdefghijklmnl")

test/csv/parse/test_row_separator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class TestCSVParseRowSeparator < Test::Unit::TestCase
77
extend DifferentOFS
8-
include Helper
8+
include CSVHelper
99

1010
def test_multiple_characters
1111
with_chunk_size("1") do

test/csv/parse/test_skip_lines.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class TestCSVParseSkipLines < Test::Unit::TestCase
66
extend DifferentOFS
7-
include Helper
7+
include CSVHelper
88

99
def test_default
1010
csv = CSV.new("a,b,c\n")

test/csv/test_encodings.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class TestCSVEncodings < Test::Unit::TestCase
77
extend DifferentOFS
8-
include Helper
8+
include CSVHelper
99

1010
def setup
1111
super

test/csv/write/test_general.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require_relative "../helper"
55

66
module TestCSVWriteGeneral
7-
include Helper
7+
include CSVHelper
88

99
def test_tab
1010
assert_equal("\t#{$INPUT_RECORD_SEPARATOR}",

0 commit comments

Comments
 (0)