Sha256: 3174f90d4e344a35ddc44f95348c4267f88ed301dde1aefc177858b6610e51e9

Contents?: true

Size: 326 Bytes

Versions: 29

Compression:

Stored size: 326 Bytes

Contents

describe "Hash#length" do
  it "returns the number of entries" do
    {:a => 1, :b => 'c'}.length.should == 2
    {:a => 1, :b => 2, :a => 2}.length.should == 2
    {:a => 1, :b => 1, :c => 1}.length.should == 3
    Hash.new.length.should == 0
    Hash.new(5).length.should == 0
    Hash.new { 5 }.length.should == 0
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
opal-0.3.29 spec/core/hash/length_spec.rb
opal-0.3.28 spec/core/hash/length_spec.rb
opal-0.3.27 spec/core/hash/length_spec.rb
opal-0.3.26 spec/core/hash/length_spec.rb
opal-0.3.25 spec/core/hash/length_spec.rb
opal-0.3.22 spec/core/hash/length_spec.rb
opal-0.3.21 test/core/hash/length_spec.rb
opal-0.3.20 test/core/hash/length_spec.rb
opal-0.3.19 test/core/hash/length_spec.rb