aboutsummaryrefslogtreecommitdiffstats
path: root/test/runner.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-22 01:59:18 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-22 01:59:18 +0000
commit05184578d77e81c0e3e0940eb3f40d2a1ce99dcd (patch)
treeab75f05157b908016974719c4e783c9205db6bc1 /test/runner.rb
parent2c1936cf87184470308b6bf3f0fe70f1a99936af (diff)
downloadruby-05184578d77e81c0e3e0940eb3f40d2a1ce99dcd.tar.gz
* test/runner.rb: set Gem::TestCase's @@project_dir.
* lib/rubygems/test_case.rb: set Gem::TestCase's @@project_dir only when it is not defined. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/runner.rb')
-rw-r--r--test/runner.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/runner.rb b/test/runner.rb
index 93eb98c0b2..608af08922 100644
--- a/test/runner.rb
+++ b/test/runner.rb
@@ -4,6 +4,9 @@ require 'test/unit'
src_testdir = File.dirname(File.expand_path(__FILE__))
$LOAD_PATH << src_testdir
+class Gem::TestCase < MiniTest::Unit::TestCase
+ @@project_dir = File.dirname($LOAD_PATH.last)
+end
require_relative 'profile_test_all' if ENV['RUBY_TEST_ALL_PROFILE'] == 'true'