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

ruby-changes:66122

From: Hiroshi <ko1@a...>
Date: Mon, 10 May 2021 19:12:34 +0900 (JST)
Subject: [ruby-changes:66122] bae9a21e40 (master): [ruby/psych] Use pend instead of skip

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

From bae9a21e40a65c0eaacebfd4b3c3a8de08892c74 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Mon, 10 May 2021 17:54:06 +0900
Subject: [ruby/psych] Use pend instead of skip

https://github.com/ruby/psych/commit/efd2a62c9a
---
 test/psych/test_hash.rb  | 2 +-
 test/psych/test_psych.rb | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/psych/test_hash.rb b/test/psych/test_hash.rb
index ba11b82..32ed7ec 100644
--- a/test/psych/test_hash.rb
+++ b/test/psych/test_hash.rb
@@ -114,7 +114,7 @@ eoyml https://github.com/ruby/ruby/blob/trunk/test/psych/test_hash.rb#L114
 
     def test_key_deduplication
       unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20)))
-        skip "This Ruby implementation doesn't support string deduplication"
+        pend "This Ruby implementation doesn't support string deduplication"
       end
 
       hashes = Psych.load(<<-eoyml)
diff --git a/test/psych/test_psych.rb b/test/psych/test_psych.rb
index 30612de..1bfa523 100644
--- a/test/psych/test_psych.rb
+++ b/test/psych/test_psych.rb
@@ -214,7 +214,7 @@ class TestPsych < Psych::TestCase https://github.com/ruby/ruby/blob/trunk/test/psych/test_psych.rb#L214
 
   def test_load_freeze_deduplication
     unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20)))
-      skip "This Ruby implementation doesn't support string deduplication"
+      pend "This Ruby implementation doesn't support string deduplication"
     end
 
     data = Psych.load("--- ['a']", freeze: true)
-- 
cgit v1.1


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

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