summaryrefslogtreecommitdiff
path: root/test/csv/test_csv_parsing.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/csv/test_csv_parsing.rb')
-rwxr-xr-x[-rw-r--r--]test/csv/test_csv_parsing.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/csv/test_csv_parsing.rb b/test/csv/test_csv_parsing.rb
index c0b8d83f96..6b50ab382e 100644..100755
--- a/test/csv/test_csv_parsing.rb
+++ b/test/csv/test_csv_parsing.rb
@@ -7,10 +7,9 @@
# Copyright 2005 James Edward Gray II. You can redistribute or modify this code
# under the terms of Ruby's license.
-require "test/unit"
require "timeout"
-require "csv"
+require_relative "base"
#
# Following tests are my interpretation of the
@@ -18,7 +17,7 @@ require "csv"
# document in one place (intentionally) and that is to make the default row
# separator <tt>$/</tt>.
#
-class TestCSVParsing < Test::Unit::TestCase
+class TestCSV::Parsing < TestCSV
BIG_DATA = "123456789\n" * 1024
def test_mastering_regex_example
@@ -217,4 +216,6 @@ class TestCSVParsing < Test::Unit::TestCase
end
end
end
+
+ with_diffrent_ofs
end