aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_gem_stub_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_stub_specification.rb
parenta634ef53764e9160cb984d01e92e3e596bf41dae (diff)
downloadruby-e487ba7ddab9dd46e95a4cff222cf08471dbd817.tar.gz
[rubygems/rubygems] Use pend instead of skip
Diffstat (limited to 'test/rubygems/test_gem_stub_specification.rb')
-rw-r--r--test/rubygems/test_gem_stub_specification.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rubygems/test_gem_stub_specification.rb b/test/rubygems/test_gem_stub_specification.rb
index 4ca40c7c50..f953d020cd 100644
--- a/test/rubygems/test_gem_stub_specification.rb
+++ b/test/rubygems/test_gem_stub_specification.rb
@@ -65,7 +65,7 @@ class TestStubSpecification < Gem::TestCase
end
def test_contains_requirable_file_eh_extension
- skip "I guess making the stub match the running platform should work" if Gem.java_platform?
+ pend "I guess making the stub match the running platform should work" if Gem.java_platform?
stub_with_extension do |stub|
_, err = capture_output do
refute stub.contains_requirable_file? 'nonexistent'
@@ -122,7 +122,7 @@ class TestStubSpecification < Gem::TestCase
end
def test_missing_extensions_eh
- skip "I guess making the stub match the running platform should work" if Gem.java_platform?
+ pend "I guess making the stub match the running platform should work" if Gem.java_platform?
stub = stub_with_extension do |s|
extconf_rb = File.join s.gem_dir, s.extensions.first
FileUtils.mkdir_p File.dirname extconf_rb