From 6ca7dc69effddeb63a8fb8f759e29ff8649907ec Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Mon, 22 Jul 2019 12:02:23 +0200 Subject: [ruby/psych] Deduplicate hash keys if they're strings https://github.com/ruby/psych/commit/0414982ffd --- test/psych/test_hash.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test/psych') diff --git a/test/psych/test_hash.rb b/test/psych/test_hash.rb index 2a563da1da..ba11b827da 100644 --- a/test/psych/test_hash.rb +++ b/test/psych/test_hash.rb @@ -111,5 +111,19 @@ bar: eoyml assert_equal({"foo"=>{"hello"=>"world"}, "bar"=>{"hello"=>"world"}}, hash) end + + def test_key_deduplication + unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20))) + skip "This Ruby implementation doesn't support string deduplication" + end + + hashes = Psych.load(<<-eoyml) +--- +- unique_identifier: 1 +- unique_identifier: 2 +eoyml + + assert_same hashes[0].keys.first, hashes[1].keys.first + end end end -- cgit v1.2.3