aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/thread/shared/queue/enque.rb
blob: 36b98d3a0738acc9e18a9129b4465de82cda40f1 (plain)
1
2
3
4
5
6
7
8
9
10
describe :queue_enq, shared: true do
  it "adds an element to the Queue" do
    q = @object.call
    q.size.should == 0
    q.send(@method, Object.new)
    q.size.should == 1
    q.send(@method, Object.new)
    q.size.should == 2
  end
end