aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-02 02:36:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-02 02:36:23 +0000
commitf7124a2ca3ce25fd028066af64e87ee5d60d3554 (patch)
treeb1209b5ce4759238e82831e82cf3c6f077352167 /test/rubygems
parent6dda4f17a9dade5cf3b333eebd8fcc3119aaddc1 (diff)
downloadruby-f7124a2ca3ce25fd028066af64e87ee5d60d3554.tar.gz
fix redefinitions
* test/rubygems/test_gem_resolver_git_specification.rb: require rubygems/installer.rb before Gem::TestCase#setup runs, otherwise as Gem::TestCase#teardown restores $LOADED_FEATURES to the state at that time, the requiring the file in GitSpecification#install method causes a lot of constant redefinitions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51098 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/test_gem_resolver_git_specification.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/rubygems/test_gem_resolver_git_specification.rb b/test/rubygems/test_gem_resolver_git_specification.rb
index a31674a218..7ab297923c 100644
--- a/test/rubygems/test_gem_resolver_git_specification.rb
+++ b/test/rubygems/test_gem_resolver_git_specification.rb
@@ -1,4 +1,5 @@
require 'rubygems/test_case'
+require 'rubygems/installer'
class TestGemResolverGitSpecification < Gem::TestCase