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

* test/rake/helper.rb (Rake::TestCase#setup): revert r37669.

@orig_PWD should be the original pwd.

* test/rake/test_*.rb: don't use @orig_PWD to load libraries.
  It should be specified with relative path from the file.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-11-16 03:49:09 +00:00
parent 48aab9e032
commit a632fe43d8
7 changed files with 17 additions and 9 deletions

View file

@ -116,7 +116,7 @@ class TestRakeFileTask < Rake::TestCase
end
def load_phony
load File.join(@orig_PWD, "lib/rake/phony.rb")
load File.expand_path('../../../lib/rake/phony.rb', __FILE__)
end
end