aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_project_sanity.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-11 12:27:07 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-28 12:33:16 +0900
commite487ba7ddab9dd46e95a4cff222cf08471dbd817 (patch)
tree0ed57662a988f50e3bb0317915a381ca5a27714c /test/rubygems/test_project_sanity.rb
parenta634ef53764e9160cb984d01e92e3e596bf41dae (diff)
downloadruby-e487ba7ddab9dd46e95a4cff222cf08471dbd817.tar.gz
[rubygems/rubygems] Use pend instead of skip
Diffstat (limited to 'test/rubygems/test_project_sanity.rb')
-rw-r--r--test/rubygems/test_project_sanity.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rubygems/test_project_sanity.rb b/test/rubygems/test_project_sanity.rb
index 236e219b8d..f7c08e9619 100644
--- a/test/rubygems/test_project_sanity.rb
+++ b/test/rubygems/test_project_sanity.rb
@@ -5,7 +5,7 @@ require "open3"
class TestProjectSanity < Gem::TestCase
def test_manifest_is_up_to_date
- skip unless File.exist?(File.expand_path("../../../Rakefile", __FILE__))
+ pend unless File.exist?(File.expand_path("../../../Rakefile", __FILE__))
_, status = Open3.capture2e("rake check_manifest")