aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/thread/sizedqueue/deq_spec.rb
blob: cc11319d220146d75a20edec2d953aa0cf5f6edb (plain)
1
2
3
4
5
6
7
require File.expand_path('../../../../spec_helper', __FILE__)
require 'thread'
require File.expand_path('../../shared/queue/deque', __FILE__)

describe "Thread::SizedQueue#deq" do
  it_behaves_like :queue_deq, :deq, -> { SizedQueue.new(10) }
end