From 9b0f2e48d7cc0cd9ee235eda33a040e40bd4a62b Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 25 Dec 2010 06:04:07 +0000 Subject: * 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/trunk@30351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/csv/test_encodings.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'test/csv') diff --git a/test/csv/test_encodings.rb b/test/csv/test_encodings.rb index 8470286941..82dca914fe 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 ######################################## -- cgit v1.2.3