mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@9a501a8
This commit is contained in:
parent
d070523e7b
commit
a66bc2c011
41 changed files with 699 additions and 639 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue