aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_gem.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-22 07:28:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-22 07:28:35 +0000
commit018e1e4f5ef9ce7242d971d42d923d8edb87225b (patch)
tree9050ba595a75200c60f9bd3fe6d2f6ff49bad79c /test/rubygems/test_gem.rb
parent9e83ce20b1121068d9a708b41c623f4493c2eb53 (diff)
downloadruby-018e1e4f5ef9ce7242d971d42d923d8edb87225b.tar.gz
* lib/rubygems/installer.rb (Gem::Installer#initialize): fixed
typos. * test/rubygems/test_gem.rb (test_self_dir): removed false assertions. * test/rubygems/test_gem.rb (test_self_set_paths): checks if paths are included. * test/rubygems/test_gem_commands_install_command.rb (test_execute_remote): checks diagnostic message too. * test/rubygems/test_gem_installer.rb (load): uses Gem.ruby. * test/rubygems/gemutilities.rb (Gem.ruby): initializes from the environment variable to run without installation. * test/rubygems/gemutilities.rb (RubyGemTestCase#util_build_gem): creates cache directory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rubygems/test_gem.rb')
-rw-r--r--test/rubygems/test_gem.rb10
1 files changed, 3 insertions, 7 deletions
diff --git a/test/rubygems/test_gem.rb b/test/rubygems/test_gem.rb
index 0707832367..b1a9d9d0a2 100644
--- a/test/rubygems/test_gem.rb
+++ b/test/rubygems/test_gem.rb
@@ -152,11 +152,6 @@ class TestGem < RubyGemTestCase
def test_self_dir
assert_equal @gemhome, Gem.dir
-
- Gem::DIRECTORIES.each do |filename|
- assert File.directory?(File.join(Gem.dir, filename)),
- "expected #{filename} to exist"
- end
end
def test_self_ensure_gem_directories
@@ -483,9 +478,10 @@ class TestGem < RubyGemTestCase
other = File.join @tempdir, 'other'
path = [@userhome, other].join File::PATH_SEPARATOR
Gem.send :set_paths, path
+ path = Gem.path
- assert File.exist?(File.join(@userhome, 'gems'))
- assert File.exist?(File.join(other, 'gems'))
+ assert_equal path[0], @userhome
+ assert_equal path[1], other
end
def test_self_set_paths_nonexistent_home