summaryrefslogtreecommitdiff
path: root/spec/ruby/core/basicobject/initialize_spec.rb
blob: b7ce73ffd5c380464c5d09be4d40e95780d2a65f (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
    -> {
      BasicObject.new("This", "makes it easier", "to call super", "from other constructors")
    }.should raise_error(ArgumentError)
  end
end