summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-16 06:30:18 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-16 06:30:18 +0000
commit60ae3101a1368264fbac7d10914c5caeb51e1e15 (patch)
tree20f0e0e7b3715bde470bad71077e849e48fc13f6 /test
parent3143c6d3819e0bef9c5c4170f9f2e4f5d2adbbb0 (diff)
merges r30351 from trunk into ruby_1_9_2.
-- * test/csv/test_encodings.rb (TestEncodings#setup): fix evil test suite writing to the source directory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@30556 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/csv/test_encodings.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/csv/test_encodings.rb b/test/csv/test_encodings.rb
index 3dc80ccdb1..bea4c620bb 100644
--- a/test/csv/test_encodings.rb
+++ b/test/csv/test_encodings.rb
@@ -13,11 +13,14 @@ require "csv"
class TestEncodings < Test::Unit::TestCase
def setup
- @temp_csv_path = File.join(File.dirname(__FILE__), "temp.csv")
+ require 'tempfile'
+ @temp_csv_file = Tempfile.new(%w"test_csv. .csv")
+ @temp_csv_path = @temp_csv_file.path
+ @temp_csv_file.close
end
def teardown
- File.unlink(@temp_csv_path) if File.exist? @temp_csv_path
+ @temp_csv_file.close!
end
########################################