aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/thread/allocate_spec.rb
blob: cd9aa1ee43172fb9b81fa781ca1cd90b124ea4cc (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'

describe "Thread.allocate" do
  it "raises a TypeError" do
    lambda {
      Thread.allocate
    }.should raise_error(TypeError)
  end
end