summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_resolver_git_specification.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_gem_resolver_git_specification.rb
parenta634ef53764e9160cb984d01e92e3e596bf41dae (diff)
[rubygems/rubygems] Use pend instead of skip
Diffstat (limited to 'test/rubygems/test_gem_resolver_git_specification.rb')
-rw-r--r--test/rubygems/test_gem_resolver_git_specification.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rubygems/test_gem_resolver_git_specification.rb b/test/rubygems/test_gem_resolver_git_specification.rb
index 34cc7fe9ec..e4944e9782 100644
--- a/test/rubygems/test_gem_resolver_git_specification.rb
+++ b/test/rubygems/test_gem_resolver_git_specification.rb
@@ -62,8 +62,8 @@ class TestGemResolverGitSpecification < Gem::TestCase
# functional test for Gem::Ext::Builder
def test_install_extension
- skip if Gem.java_platform?
- skip if /mswin/ =~ RUBY_PLATFORM && ENV.key?('GITHUB_ACTIONS') # not working from the beginning
+ pend if Gem.java_platform?
+ pend if /mswin/ =~ RUBY_PLATFORM && ENV.key?('GITHUB_ACTIONS') # not working from the beginning
name, _, repository, = git_gem 'a', 1 do |s|
s.extensions << 'ext/extconf.rb'
end