summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2021-08-08 10:40:11 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-08-31 19:06:14 +0900
commitd01c3111c25d618ab42b0b52b620c55a9305d0e9 (patch)
treebbc51a00cf4706c79a365dd48137aca0781bdbbf /test
parentafabef5a5ab067ee34e70be54fc1b3cfcad63862 (diff)
[rubygems/rubygems] Remove MacOS specific extra GEM_PATH
They should properly configure `GEM_PATH` instead. https://github.com/rubygems/rubygems/commit/3bd9ae33ca
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4789
Diffstat (limited to 'test')
-rw-r--r--test/rubygems/test_gem.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/rubygems/test_gem.rb b/test/rubygems/test_gem.rb
index da154dac75..013daa0610 100644
--- a/test/rubygems/test_gem.rb
+++ b/test/rubygems/test_gem.rb
@@ -943,44 +943,9 @@ class TestGem < Gem::TestCase
def test_self_path_default
util_path
- if defined?(APPLE_GEM_HOME)
- orig_APPLE_GEM_HOME = APPLE_GEM_HOME
- Object.send :remove_const, :APPLE_GEM_HOME
- end
-
Gem.instance_variable_set :@paths, nil
assert_equal [Gem.default_path, Gem.dir].flatten.uniq, Gem.path
- ensure
- Object.const_set :APPLE_GEM_HOME, orig_APPLE_GEM_HOME if orig_APPLE_GEM_HOME
- end
-
- unless win_platform?
- def test_self_path_APPLE_GEM_HOME
- util_path
-
- Gem.clear_paths
- apple_gem_home = File.join @tempdir, 'apple_gem_home'
-
- old, $-w = $-w, nil
- Object.const_set :APPLE_GEM_HOME, apple_gem_home
- $-w = old
-
- assert_includes Gem.path, apple_gem_home
- ensure
- Object.send :remove_const, :APPLE_GEM_HOME
- end
-
- def test_self_path_APPLE_GEM_HOME_GEM_PATH
- Gem.clear_paths
- ENV['GEM_PATH'] = @gemhome
- apple_gem_home = File.join @tempdir, 'apple_gem_home'
- Gem.const_set :APPLE_GEM_HOME, apple_gem_home
-
- refute Gem.path.include?(apple_gem_home)
- ensure
- Gem.send :remove_const, :APPLE_GEM_HOME
- end
end
def test_self_path_ENV_PATH