summaryrefslogtreecommitdiff
path: root/spec/ruby/core/basicobject/initialize_spec.rb
blob: 0266496856c435832401d419fe9a053aba9636f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../spec_helper'

describe "BasicObject#initialize" do
  it "is a private instance method" do
    BasicObject.should have_private_instance_method(:initialize)
  end

  it "does not accept arguments" do
    lambda {
      BasicObject.new("This", "makes it easier", "to call super", "from other constructors")
    }.should raise_error(ArgumentError)
  end
end