-
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement ObjectSpace::WeakMap#delete and ObjectSpace::WeakKeyMap#delete
[Feature #19561] It's useful to be able to remove references from weak maps.
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
require_relative '../../../spec_helper' | ||
|
||
ruby_version_is '3.3' do | ||
describe "ObjectSpace::WeakKeyMap#delete" do | ||
it "removes the entry and returns the deleted value" do | ||
m = ObjectSpace::WeakKeyMap.new | ||
key = Object.new | ||
value = Object.new | ||
m[key] = value | ||
|
||
m.delete(key).should == value | ||
m.key?(key).should == false | ||
end | ||
|
||
it "uses equality semantic" do | ||
m = ObjectSpace::WeakKeyMap.new | ||
key = "foo".upcase | ||
value = Object.new | ||
m[key] = value | ||
|
||
m.delete("foo".upcase).should == value | ||
m.key?(key).should == false | ||
end | ||
|
||
it "calls supplied block if the key is not found" do | ||
key = Object.new | ||
m = ObjectSpace::WeakKeyMap.new | ||
return_value = m.delete(key) do |yielded_key| | ||
yielded_key.should == key | ||
5 | ||
end | ||
return_value.should == 5 | ||
end | ||
|
||
it "returns nil if the key is not found when no block is given" do | ||
m = ObjectSpace::WeakMap.new | ||
m.delete(Object.new).should == nil | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
require_relative '../../../spec_helper' | ||
|
||
ruby_version_is '3.3' do | ||
describe "ObjectSpace::WeakMap#delete" do | ||
it "removes the entry and returns the deleted value" do | ||
m = ObjectSpace::WeakMap.new | ||
key = Object.new | ||
value = Object.new | ||
m[key] = value | ||
|
||
m.delete(key).should == value | ||
m.key?(key).should == false | ||
end | ||
|
||
it "calls supplied block if the key is not found" do | ||
key = Object.new | ||
m = ObjectSpace::WeakMap.new | ||
return_value = m.delete(key) do |yielded_key| | ||
yielded_key.should == key | ||
5 | ||
end | ||
return_value.should == 5 | ||
end | ||
|
||
it "returns nil if the key is not found when no block is given" do | ||
m = ObjectSpace::WeakMap.new | ||
m.delete(Object.new).should == nil | ||
end | ||
end | ||
end |