Sha256: 448a528a3d3433df297276c1876d156577a92d2c7c6b6bae9a3bd0d3e6130857

Contents?: true

Size: 421 Bytes

Versions: 29

Compression:

Stored size: 421 Bytes

Contents

describe "Hash#each_key" do
  it "calls block once for each key, passing key" do
    r = {}
    h = {1 => -1, 2 => -2, 3 => -3, 4 => -4}
    h.each_key { |k| r[k] = k }.should equal(h)
    r.should == {1 => 1, 2 => 2, 3 => 3, 4 => 4}
  end

  it "processes keys in the same order as keys()" do
    keys = []
    h = {1 => -1, 2 => -2, 3 => -3, 4 => -4}
    h.each_key { |k| keys << k }
    keys.should == h.keys
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
opal-0.4.4 spec/rubyspec/core/hash/each_key_spec.rb
opal-0.4.3 spec/rubyspec/core/hash/each_key_spec.rb
opal-0.4.2 spec/rubyspec/core/hash/each_key_spec.rb
opal-0.4.1 spec/rubyspec/core/hash/each_key_spec.rb
opal-0.4.0 spec/rubyspec/core/hash/each_key_spec.rb
opal-0.3.44 spec/rubyspec/core/hash/each_key_spec.rb
opal-0.3.43 spec/rubyspec/core/hash/each_key_spec.rb
opal-0.3.42 spec/core/hash/each_key_spec.rb
opal-0.3.41 spec/core/hash/each_key_spec.rb
opal-0.3.40 spec/core/hash/each_key_spec.rb
opal-0.3.39 spec/core/hash/each_key_spec.rb
opal-0.3.38 spec/core/hash/each_key_spec.rb
opal-0.3.37 spec/core/hash/each_key_spec.rb
opal-0.3.36 spec/core/hash/each_key_spec.rb
opal-0.3.35 spec/core/hash/each_key_spec.rb
opal-0.3.34 spec/core/hash/each_key_spec.rb
opal-0.3.33 spec/core/hash/each_key_spec.rb
opal-0.3.32 spec/core/hash/each_key_spec.rb
opal-0.3.31 spec/core/hash/each_key_spec.rb
opal-0.3.30 spec/core/hash/each_key_spec.rb