Sha256: f726105782890ba2db013b5920563d8db94dfe6cb97c182034789d502bec8381

Contents?: true

Size: 502 Bytes

Versions: 62

Compression:

Stored size: 502 Bytes

Contents

require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

describe "Hash#empty?" do
  it "returns true if the hash has no entries" do
    new_hash.empty?.should == true
    new_hash(1 => 1).empty?.should == false
  end

  it "returns true if the hash has no entries and has a default value" do
    new_hash(5).empty?.should == true
    new_hash { 5 }.empty?.should == true
    new_hash { |hsh, k| hsh[k] = k }.empty?.should == true
  end
end

Version data entries

62 entries across 62 versions & 3 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/hash/empty_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/hash/empty_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/hash/empty_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/hash/empty_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/hash/empty_spec.rb
jactive_support-2.1.2 spec/java_ext/map/empty_spec.rb
jactive_support-3.0.0 spec/java_ext/map/empty_spec.rb
jactive_support-3.0.0.pre2 spec/java_ext/map/empty_spec.rb