summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/allocate_spec.rb
blob: 6bfb94dbc2d933b88bc492d0137b16b7997f8cd1 (plain)
1
2
3
4
5
6
7
8
9
require File.expand_path('../../../spec_helper', __FILE__)

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