aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_require.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-24 02:06:32 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-24 02:06:32 +0000
commit052c0e67d99552aeb2091d1ae7133465a5aa7291 (patch)
treef7bb54920e8bad79a2ddc100c900da9b6cc4c2ad /test/ruby/test_require.rb
parent61f50e317e3bfea90cf1b8e9ce8e4e6f704173a4 (diff)
downloadruby-052c0e67d99552aeb2091d1ae7133465a5aa7291.tar.gz
* test/ruby/test_require.rb: Remove temporally files in the tests.
* test/ruby/test_rubyoptions.rb: Ditto. * test/logger/test_logger.rb: Ditto. * test/psych/test_psych.rb: Ditto. * test/readline/test_readline.rb: Ditto. * test/syslog/test_syslog_logger.rb: Ditto. * test/webrick/test_httpauth.rb: Ditto. * test/zlib/test_zlib.rb: Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39899 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_require.rb')
-rw-r--r--test/ruby/test_require.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ruby/test_require.rb b/test/ruby/test_require.rb
index f6e75a8eaf..cb17b915c2 100644
--- a/test/ruby/test_require.rb
+++ b/test/ruby/test_require.rb
@@ -26,6 +26,7 @@ class TestRequire < Test::Unit::TestCase
p :ok
end
INPUT
+ t.close(true)
end
def test_require_too_long_filename
@@ -101,6 +102,7 @@ class TestRequire < Test::Unit::TestCase
ensure
env_rubypath ? ENV["RUBYPATH"] = env_rubypath : ENV.delete("RUBYPATH")
env_home ? ENV["HOME"] = env_home : ENV.delete("HOME")
+ t.close(true)
end
def test_require_with_unc
@@ -258,6 +260,7 @@ class TestRequire < Test::Unit::TestCase
INPUT
assert_raise(ArgumentError) { at_exit }
+ t.close(true)
end
def test_load2 # [ruby-core:25039]
@@ -271,6 +274,7 @@ class TestRequire < Test::Unit::TestCase
assert_in_out_err([], <<-INPUT, %w("hello"), [])
load(#{ t.path.dump }, true)
INPUT
+ t.close(true)
end
def test_tainted_loadpath
@@ -320,6 +324,8 @@ class TestRequire < Test::Unit::TestCase
require "#{ file }"
p :ok
INPUT
+
+ t.close(true)
end
def test_relative