summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/shared/length.rb
blob: 24f5563759091fbd5384e1f2090c61c3f7ed4cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
describe :hash_length, shared: true do
  it "returns the number of entries" do
    { a: 1, b: 'c' }.send(@method).should == 2
    h = { a: 1, b: 2 }
    h[:a] = 2
    h.send(@method).should == 2
    { a: 1, b: 1, c: 1 }.send(@method).should == 3
    {}.send(@method).should == 0
    Hash.new(5).send(@method).should == 0
    Hash.new { 5 }.send(@method).should == 0
  end
end