Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add specs for Thread#fetch with a block #1120

Merged
merged 1 commit into from
Dec 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions core/thread/fetch_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,36 @@
end
end

describe 'with a block' do
it 'returns the value of the fiber-local variable if value has been assigned' do
th = Thread.new { Thread.current[:cat] = 'meow' }
th.join
th.fetch(:cat) { true }.should == 'meow'
end

it "returns the block value if fiber-local variable hasn't been assigned" do
th = Thread.new {}
th.join
th.fetch(:cat) { true }.should == true
end

it "does not call the block if value has been assigned" do
th = Thread.new { Thread.current[:cat] = 'meow' }
th.join
var = :not_updated
th.fetch(:cat) { var = :updated }.should == 'meow'
var.should == :not_updated
end

it "uses the block if a default is given and warns about it" do
th = Thread.new {}
th.join
-> {
th.fetch(:cat, false) { true }.should == true
}.should complain(/warning: block supersedes default value argument/)
end
end

it 'raises an ArgumentError when not passed one or two arguments' do
-> { Thread.current.fetch() }.should raise_error(ArgumentError)
-> { Thread.current.fetch(1, 2, 3) }.should raise_error(ArgumentError)
Expand Down