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/queue_spec.rb

9 lines
194 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
describe "Thread::Queue" do
it "is the same class as ::Queue" do
Thread.should have_constant(:Queue)
Thread::Queue.should equal ::Queue
end
end