1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/thread/sizedqueue_spec.rb

9 lines
219 B
Ruby
Raw Normal View History

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