From 61aedb28ef1c618b57b59a7f96d598be376f3222 Mon Sep 17 00:00:00 2001 From: Lucas Kanashiro Date: Thu, 23 Sep 2021 18:25:38 -0300 Subject: [PATCH] [rubygems/rubygems] Use pend instead of skip in the absence of git in test helper https://github.com/rubygems/rubygems/commit/798a93a98c --- test/rubygems/helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: