aboutsummaryrefslogtreecommitdiffstats
path: root/test/csv/test_interface.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-25 06:58:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-25 06:58:58 +0000
commitd05217109fb5e909bbd7849bcc799b6404c7c8b0 (patch)
tree59c6e741e5c94660ea5860d745fffec33274121b /test/csv/test_interface.rb
parent47a1cd1291f1f52cc8d36cb533e0d653d128930a (diff)
downloadruby-d05217109fb5e909bbd7849bcc799b6404c7c8b0.tar.gz
* lib/csv.rb, test/csv: should not assume $, invariant.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30353 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/csv/test_interface.rb')
-rwxr-xr-x[-rw-r--r--]test/csv/test_interface.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/csv/test_interface.rb b/test/csv/test_interface.rb
index a58e9c6179..8bcd134781 100644..100755
--- a/test/csv/test_interface.rb
+++ b/test/csv/test_interface.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 TestCSVInterface < Test::Unit::TestCase
+class TestCSV::Interface < TestCSV
def setup
@path = File.join(File.dirname(__FILE__), "temp_test_data.csv")
@@ -306,4 +304,6 @@ class TestCSVInterface < Test::Unit::TestCase
assert_equal(STDOUT, CSV.instance.instance_eval { @io })
assert_equal(STDOUT, CSV { |new_csv| new_csv.instance_eval { @io } })
end
+
+ with_diffrent_ofs
end