summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_request_set.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-05-25 21:05:45 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-12 17:24:43 +0900
commit3948be350312b908ea3ecf32ecf1adf420fe74ca (patch)
tree8f01de8e25e201e16a4f15b1124f7251a892d0a4 /test/rubygems/test_gem_request_set.rb
parent81d793a9216303f70143b13a88c924c22ce4af6d (diff)
[rubygems/rubygems] Use assert_path_exist and assert_path_not_exist instead of assert_path_exists and refute_path_exists
https://github.com/rubygems/rubygems/commit/a7c93558c3
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4491
Diffstat (limited to 'test/rubygems/test_gem_request_set.rb')
-rw-r--r--test/rubygems/test_gem_request_set.rb22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/rubygems/test_gem_request_set.rb b/test/rubygems/test_gem_request_set.rb
index e2f0bf252b..d1c07d931c 100644
--- a/test/rubygems/test_gem_request_set.rb
+++ b/test/rubygems/test_gem_request_set.rb
@@ -64,8 +64,8 @@ class TestGemRequestSet < Gem::TestCase
end
assert_includes installed, 'a-2'
- assert_path_exists File.join @gemhome, 'gems', 'a-2'
- assert_path_exists 'gem.deps.rb.lock'
+ assert_path_exist File.join @gemhome, 'gems', 'a-2'
+ assert_path_exist 'gem.deps.rb.lock'
assert rs.remote
refute done_installing_ran
@@ -100,7 +100,7 @@ Gems to install:
end
util_clear_gems
- refute_path_exists File.join Gem.dir, 'gems', 'a-2'
+ assert_path_not_exist File.join Gem.dir, 'gems', 'a-2'
rs = Gem::RequestSet.new
installed = []
@@ -119,7 +119,7 @@ Gems to install:
end
assert_includes installed, 'a-2'
- refute_path_exists File.join Gem.dir, 'gems', 'a-2'
+ assert_path_not_exist File.join Gem.dir, 'gems', 'a-2'
end
def test_install_from_gemdeps_local
@@ -179,8 +179,8 @@ DEPENDENCIES
assert_includes installed, 'b-1'
assert_includes installed, 'a-1'
- assert_path_exists File.join @gemhome, 'specifications', 'a-1.gemspec'
- assert_path_exists File.join @gemhome, 'specifications', 'b-1.gemspec'
+ assert_path_exist File.join @gemhome, 'specifications', 'a-1.gemspec'
+ assert_path_exist File.join @gemhome, 'specifications', 'b-1.gemspec'
end
def test_install_from_gemdeps_complex_dependencies
@@ -232,7 +232,7 @@ end
assert_includes installed, 'z-1.0.3'
- assert_path_exists File.join @gemhome, 'specifications', 'z-1.0.3.gemspec'
+ assert_path_exist File.join @gemhome, 'specifications', 'z-1.0.3.gemspec'
end
def test_install_from_gemdeps_version_mismatch
@@ -525,8 +525,8 @@ ruby "0"
assert_equal %w[b-1 a-1],
installers.map {|installer| installer.spec.full_name }
- assert_path_exists File.join @gemhome, 'specifications', 'a-1.gemspec'
- assert_path_exists File.join @gemhome, 'specifications', 'b-1.gemspec'
+ assert_path_exist File.join @gemhome, 'specifications', 'a-1.gemspec'
+ assert_path_exist File.join @gemhome, 'specifications', 'b-1.gemspec'
assert_equal %w[b-1 a-1], installed.map {|s| s.full_name }
@@ -548,8 +548,8 @@ ruby "0"
assert_equal @tempdir, ENV['GEM_HOME']
end
- assert_path_exists File.join @tempdir, 'specifications', 'a-1.gemspec'
- assert_path_exists File.join @tempdir, 'specifications', 'b-1.gemspec'
+ assert_path_exist File.join @tempdir, 'specifications', 'a-1.gemspec'
+ assert_path_exist File.join @tempdir, 'specifications', 'b-1.gemspec'
assert_equal %w[b-1 a-1], installed.map {|s| s.full_name }
end