aboutsummaryrefslogtreecommitdiffstats
path: root/test/csv/test_row.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/csv/test_row.rb')
-rwxr-xr-x[-rw-r--r--]test/csv/test_row.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/csv/test_row.rb b/test/csv/test_row.rb
index f9aa959701..b2d94fa4d6 100644..100755
--- a/test/csv/test_row.rb
+++ b/test/csv/test_row.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 TestCSVRow < Test::Unit::TestCase
+class TestCSV::Row < TestCSV
def setup
@row = CSV::Row.new(%w{A B C A A}, [1, 2, 3, 4])
end
@@ -309,4 +307,6 @@ class TestCSVRow < Test::Unit::TestCase
"Header field pair not found." )
end
end
+
+ with_diffrent_ofs
end