summaryrefslogtreecommitdiff
path: root/spec/ruby/library/thread/sizedqueue_spec.rb
blob: 6151ff437c48530d001f72c896e458087a4dc0cb (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'

describe "Thread::SizedQueue" do
  it "is the same class as ::SizedQueue" do
    Thread.should have_constant(:SizedQueue)
    Thread::SizedQueue.should equal ::SizedQueue
  end
end