1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2019-05-28 22:41:48 +02:00
parent d070523e7b
commit a66bc2c011
41 changed files with 699 additions and 639 deletions

View file

@ -11,6 +11,14 @@ describe "Hash#hash" do
{ 0=>2, 11=>1 }.hash.should == { 11=>1, 0=>2 }.hash
end
it "returns a value in which element values do not cancel each other out" do
{ a: 2, b: 2 }.hash.should_not == { a: 7, b: 7 }.hash
end
it "returns a value in which element keys and values do not cancel each other out" do
{ :a => :a }.hash.should_not == { :b => :b }.hash
end
it "generates a hash for recursive hash structures" do
h = {}
h[:a] = h