summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/allocate_spec.rb
blob: 54e1b69df9f5ffc802e8d4419d96da9a1658007f (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'

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