mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
273 B
Ruby
13 lines
273 B
Ruby
|
describe :queue_closed?, shared: true do
|
||
|
it "returns false initially" do
|
||
|
queue = @object.call
|
||
|
queue.closed?.should be_false
|
||
|
end
|
||
|
|
||
|
it "returns true when the queue is closed" do
|
||
|
queue = @object.call
|
||
|
queue.close
|
||
|
queue.closed?.should be_true
|
||
|
end
|
||
|
end
|