summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Kanashiro <lucas.kanashiro@canonical.com>2021-09-23 18:25:38 -0300
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-24 10:57:27 +0900
commit61aedb28ef1c618b57b59a7f96d598be376f3222 (patch)
tree2abfcd5e03b4c600255bd4ecd57c6b041e7d2f59
parent4e7f085cf7a4e83a05ce134f19719146ee131ffe (diff)
[rubygems/rubygems] Use pend instead of skip in the absence of git in test helper
https://github.com/rubygems/rubygems/commit/798a93a98c
-rw-r--r--test/rubygems/helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rubygems/helper.rb b/test/rubygems/helper.rb
index b25c9a9398..812142f7d2 100644
--- a/test/rubygems/helper.rb
+++ b/test/rubygems/helper.rb
@@ -595,7 +595,7 @@ class Gem::TestCase < Test::Unit::TestCase
def have_git?
return if in_path? @git
- skip 'cannot find git executable, use GIT environment variable to set'
+ pend 'cannot find git executable, use GIT environment variable to set'
end
def in_path?(executable) # :nodoc: