1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rubygems/test_case.rb: save current dir to @current_dir

before Dir.chdir.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31151 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-03-22 12:20:52 +00:00
parent 4520a3408a
commit f06ec31c54
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Mar 22 21:20:10 2011 NARUSE, Yui <naruse@ruby-lang.org>
* lib/rubygems/test_case.rb: save current dir to @current_dir
before Dir.chdir.
Tue Mar 22 20:10:04 2011 Tanaka Akira <akr@fsij.org>
* ext/psych/parser.c: parenthesize macro arguments.

View file

@ -106,6 +106,7 @@ class Gem::TestCase < MiniTest::Unit::TestCase
@orig_gem_home = ENV['GEM_HOME']
@orig_gem_path = ENV['GEM_PATH']
@current_dir = Dir.pwd
@ui = Gem::MockGemUi.new
tmpdir = nil
Dir.chdir Dir.tmpdir do tmpdir = Dir.pwd end # HACK OSX /private/tmp
@ -208,7 +209,7 @@ class Gem::TestCase < MiniTest::Unit::TestCase
Gem::RemoteFetcher.fetcher = nil
end
Dir.chdir @@project_dir
Dir.chdir @current_dir
FileUtils.rm_rf @tempdir unless ENV['KEEP_FILES']