summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_doctor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rubygems/test_gem_doctor.rb')
-rw-r--r--test/rubygems/test_gem_doctor.rb52
1 files changed, 26 insertions, 26 deletions
diff --git a/test/rubygems/test_gem_doctor.rb b/test/rubygems/test_gem_doctor.rb
index f99de3d020..4514d17f9f 100644
--- a/test/rubygems/test_gem_doctor.rb
+++ b/test/rubygems/test_gem_doctor.rb
@@ -27,14 +27,14 @@ class TestGemDoctor < Gem::TestCase
io.write 'this will raise an exception when evaluated.'
end
- assert_path_exists File.join(a.gem_dir, 'Rakefile')
- assert_path_exists File.join(a.gem_dir, 'lib', 'a.rb')
+ assert_path_exist File.join(a.gem_dir, 'Rakefile')
+ assert_path_exist File.join(a.gem_dir, 'lib', 'a.rb')
- assert_path_exists b.gem_dir
- refute_path_exists b.spec_file
+ assert_path_exist b.gem_dir
+ assert_path_not_exist b.spec_file
- assert_path_exists c.gem_dir
- assert_path_exists c.spec_file
+ assert_path_exist c.gem_dir
+ assert_path_exist c.spec_file
doctor = Gem::Doctor.new @gemhome
@@ -44,14 +44,14 @@ class TestGemDoctor < Gem::TestCase
end
end
- assert_path_exists File.join(a.gem_dir, 'Rakefile')
- assert_path_exists File.join(a.gem_dir, 'lib', 'a.rb')
+ assert_path_exist File.join(a.gem_dir, 'Rakefile')
+ assert_path_exist File.join(a.gem_dir, 'lib', 'a.rb')
- refute_path_exists b.gem_dir
- refute_path_exists b.spec_file
+ assert_path_not_exist b.gem_dir
+ assert_path_not_exist b.spec_file
- refute_path_exists c.gem_dir
- refute_path_exists c.spec_file
+ assert_path_not_exist c.gem_dir
+ assert_path_not_exist c.spec_file
expected = <<-OUTPUT
Checking #{@gemhome}
@@ -80,14 +80,14 @@ Removed directory gems/c-2
io.write 'this will raise an exception when evaluated.'
end
- assert_path_exists File.join(a.gem_dir, 'Rakefile')
- assert_path_exists File.join(a.gem_dir, 'lib', 'a.rb')
+ assert_path_exist File.join(a.gem_dir, 'Rakefile')
+ assert_path_exist File.join(a.gem_dir, 'lib', 'a.rb')
- assert_path_exists b.gem_dir
- refute_path_exists b.spec_file
+ assert_path_exist b.gem_dir
+ assert_path_not_exist b.spec_file
- assert_path_exists c.gem_dir
- assert_path_exists c.spec_file
+ assert_path_exist c.gem_dir
+ assert_path_exist c.spec_file
doctor = Gem::Doctor.new @gemhome, true
@@ -97,14 +97,14 @@ Removed directory gems/c-2
end
end
- assert_path_exists File.join(a.gem_dir, 'Rakefile')
- assert_path_exists File.join(a.gem_dir, 'lib', 'a.rb')
+ assert_path_exist File.join(a.gem_dir, 'Rakefile')
+ assert_path_exist File.join(a.gem_dir, 'lib', 'a.rb')
- assert_path_exists b.gem_dir
- refute_path_exists b.spec_file
+ assert_path_exist b.gem_dir
+ assert_path_not_exist b.spec_file
- assert_path_exists c.gem_dir
- assert_path_exists c.spec_file
+ assert_path_exist c.gem_dir
+ assert_path_exist c.spec_file
expected = <<-OUTPUT
Checking #{@gemhome}
@@ -133,7 +133,7 @@ Extra directory gems/c-2
end
end
- assert_path_exists other_dir
+ assert_path_exist other_dir
expected = <<-OUTPUT
Checking #{@tempdir}
@@ -169,7 +169,7 @@ This directory does not appear to be a RubyGems repository, skipping
end
end
- # refute_path_exists bad_plugin
+ # assert_path_not_exist bad_plugin
expected = <<-OUTPUT
Checking #{@gemhome}