[前][次][番号順一覧][スレッド一覧]

ruby-changes:66566

From: Hiroshi <ko1@a...>
Date: Wed, 23 Jun 2021 11:06:19 +0900 (JST)
Subject: [ruby-changes:66566] 6aaa1c4d09 (master): [ruby/rdoc] Use pend instead of skip

https://git.ruby-lang.org/ruby.git/commit/?id=6aaa1c4d09

From 6aaa1c4d09249baae93d5bb7fba585be420c4fee Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Fri, 18 Jun 2021 14:21:20 +0900
Subject: [ruby/rdoc] Use pend instead of skip

https://github.com/ruby/rdoc/commit/8460a36d84
---
 test/rdoc/test_rdoc_rubygems_hook.rb | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/test/rdoc/test_rdoc_rubygems_hook.rb b/test/rdoc/test_rdoc_rubygems_hook.rb
index 36794be..c438944 100644
--- a/test/rdoc/test_rdoc_rubygems_hook.rb
+++ b/test/rdoc/test_rdoc_rubygems_hook.rb
@@ -32,7 +32,7 @@ class TestRDocRubygemsHook < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rubygems_hook.rb#L32
     begin
       RDoc::RubygemsHook.load_rdoc
     rescue Gem::DocumentError => e
-      skip e.message
+      pend e.message
     end
     @old_ui = Gem::DefaultUserInteraction.ui
     Gem::DefaultUserInteraction.ui = Gem::SilentUI.new
@@ -220,8 +220,8 @@ class TestRDocRubygemsHook < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rubygems_hook.rb#L220
   end
 
   def test_remove_unwritable
-    skip 'chmod not supported' if Gem.win_platform?
-    skip "assumes that euid is not root" if Process.euid == 0
+    pend 'chmod not supported' if Gem.win_platform?
+    pend "assumes that euid is not root" if Process.euid == 0
 
     FileUtils.mkdir_p @a.base_dir
     FileUtils.chmod 0, @a.base_dir
@@ -250,8 +250,8 @@ class TestRDocRubygemsHook < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rubygems_hook.rb#L250
   end
 
   def test_setup_unwritable
-    skip 'chmod not supported' if Gem.win_platform?
-    skip "assumes that euid is not root" if Process.euid == 0
+    pend 'chmod not supported' if Gem.win_platform?
+    pend "assumes that euid is not root" if Process.euid == 0
 
     FileUtils.mkdir_p @a.doc_dir
     FileUtils.chmod 0, @a.doc_dir
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]