1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/psych] Use pend instead of skip

https://github.com/ruby/psych/commit/efd2a62c9a
This commit is contained in:
Hiroshi SHIBATA 2021-05-10 17:54:06 +09:00
parent 53c5a4bbe1
commit bae9a21e40
2 changed files with 2 additions and 2 deletions

View file

@ -114,7 +114,7 @@ eoyml
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)

View file

@ -214,7 +214,7 @@ class TestPsych < Psych::TestCase
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)