summaryrefslogtreecommitdiff
path: root/spec/ruby/library/thread/queue_spec.rb
blob: c7e2bb1b501f55399f00e92cc29cf6d2474ded2e (plain)
1
2
3
4
5
6
7
8
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