summaryrefslogtreecommitdiff
path: root/test/csv/test_features.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/csv/test_features.rb')
-rwxr-xr-x[-rw-r--r--]test/csv/test_features.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/csv/test_features.rb b/test/csv/test_features.rb
index 58efd1c9b3..4141f39480 100644..100755
--- a/test/csv/test_features.rb
+++ b/test/csv/test_features.rb
@@ -7,12 +7,11 @@
# Copyright 2005 James Edward Gray II. You can redistribute or modify this code
# under the terms of Ruby's license.
-require "test/unit"
require "zlib"
-require "csv"
+require_relative "base"
-class TestCSVFeatures < Test::Unit::TestCase
+class TestCSV::Features < TestCSV
TEST_CASES = [ [%Q{a,b}, ["a", "b"]],
[%Q{a,"""b"""}, ["a", "\"b\""]],
[%Q{a,"""b"}, ["a", "\"b"]],
@@ -264,4 +263,6 @@ class TestCSVFeatures < Test::Unit::TestCase
assert(CSV::VERSION.frozen?)
assert_match(/\A\d\.\d\.\d\Z/, CSV::VERSION)
end
+
+ with_diffrent_ofs
end