aboutsummaryrefslogtreecommitdiffstats
path: root/test/csv/test_headers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/csv/test_headers.rb')
-rwxr-xr-x[-rw-r--r--]test/csv/test_headers.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/csv/test_headers.rb b/test/csv/test_headers.rb
index 6e56ffc27c..ef955fb492 100644..100755
--- a/test/csv/test_headers.rb
+++ b/test/csv/test_headers.rb
@@ -7,11 +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_relative "base"
-require "csv"
-
-class TestCSVHeaders < Test::Unit::TestCase
+class TestCSV::Headers < TestCSV
def setup
@data = <<-END_CSV.gsub(/^\s+/, "")
first,second,third
@@ -285,4 +283,6 @@ class TestCSVHeaders < Test::Unit::TestCase
assert_instance_of(CSV::Row, row)
end
end
+
+ with_diffrent_ofs
end