blob: 7dc328803a44277c732147af0e8cce9a2a12335f (
plain)
1
2
3
4
5
6
7
8
9
|
require File.expand_path('../../../../spec_helper', __FILE__)
require 'thread'
require File.expand_path('../../shared/queue/clear', __FILE__)
describe "Thread::SizedQueue#clear" do
it_behaves_like :queue_clear, :clear, -> { SizedQueue.new(10) }
# TODO: test for atomicity of Queue#clear
end
|