Sha256: a7686059dca439c277dc4a48605a63c05fee91bcbbcbd8d02f6f93b2cf70a2b6

Contents?: true

Size: 1.35 KB

Versions: 10

Compression:

Stored size: 1.35 KB

Contents

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

describe "Hash#delete" do
  it "removes the entry and returns the deleted value" do
    h = new_hash(:a => 5, :b => 2)
    h.delete(:b).should == 2
    h.should == new_hash(:a => 5)
  end

  it "calls supplied block if the key is not found" do
    new_hash(:a => 1, :b => 10, :c => 100).delete(:d) { 5 }.should == 5
    new_hash(:default).delete(:d) { 5 }.should == 5
    new_hash { :defualt }.delete(:d) { 5 }.should == 5
  end

  it "returns nil if the key is not found when no block is given" do
    new_hash(:a => 1, :b => 10, :c => 100).delete(:d).should == nil
    new_hash(:default).delete(:d).should == nil
    new_hash { :defualt }.delete(:d).should == nil
  end

=begin frozen
  ruby_version_is "" ... "1.9" do
    it "raises a TypeError if called on a frozen instance" do
      lambda { HashSpecs.frozen_hash.delete("foo")  }.should raise_error(TypeError)
      lambda { HashSpecs.empty_frozen_hash.delete("foo") }.should raise_error(TypeError)
    end
  end

  ruby_version_is "1.9" do
    it "raises a RuntimeError if called on a frozen instance" do
      lambda { HashSpecs.frozen_hash.delete("foo")  }.should raise_error(RuntimeError)
      lambda { HashSpecs.empty_frozen_hash.delete("foo") }.should raise_error(RuntimeError)
    end
  end
=end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
jactive_support-2.1.2 spec/java_ext/map/delete_spec.rb
jactive_support-3.0.0 spec/java_ext/map/delete_spec.rb
jactive_support-3.0.0.pre2 spec/java_ext/map/delete_spec.rb
jactive_support-3.0.0.pre1 spec/java_ext/map/delete_spec.rb
jactive_support-2.1.1 spec/java_ext/map/delete_spec.rb
jactive_support-2.1.0 spec/java_ext/map/delete_spec.rb
jactive_support-2.0.0 spec/java_ext/map/delete_spec.rb
jactive_support-1.0.2 spec/java_ext/map/delete_spec.rb
jactive_support-1.0.1-universal-java-1.6 spec/java_ext/map/delete_spec.rb
jactive_support-1.0.0-universal-java-1.6 spec/java_ext/map/delete_spec.rb