diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-06-03 13:07:57 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-06-03 13:07:57 +0000 |
| commit | 7ad690313b3b274b2c527ab26d341f69fb09dbd5 (patch) | |
| tree | 783b178eabf2b9e09b89487b901e217eac7c2108 | |
| parent | 259f84169874b627431e70131e1ce6c478dd2504 (diff) | |
* lib/rubygems/test_case.rb: Refix for test-all in separate directory.
r31147 + r31151.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/rubygems/test_case.rb | 5 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Fri Jun 3 21:48:12 2011 NARUSE, Yui <naruse@ruby-lang.org> + + * lib/rubygems/test_case.rb: Refix for test-all in separate directory. + r31147 + r31151. + Fri Jun 3 20:58:47 2011 NAKAMURA Usaku <usa@ruby-lang.org> * ext/date/date_core.c (d_lite_plus): get rid of compiler warnings. diff --git a/lib/rubygems/test_case.rb b/lib/rubygems/test_case.rb index 3b26d31611..7923fac7ed 100644 --- a/lib/rubygems/test_case.rb +++ b/lib/rubygems/test_case.rb @@ -103,7 +103,7 @@ class Gem::TestCase < MiniTest::Unit::TestCase undef_method :default_test if instance_methods.include? 'default_test' or instance_methods.include? :default_test - @@project_dir = Dir.pwd + @@project_dir = Dir.pwd unless defined?(@@project_dir) ## # #setup prepares a sandboxed location to install gems. All installs are @@ -122,6 +122,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 @@ -228,7 +229,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'] |
