summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/initialize_dup_spec.rb
blob: 6dff34b7ad8fb9ba66afbe6205cbbe488c6faa93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative '../../spec_helper'

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

  it "returns the receiver" do
    a = Object.new
    b = Object.new
    a.send(:initialize_dup, b).should == a
  end

  it "calls #initialize_copy" do
    a = Object.new
    b = Object.new
    a.should_receive(:initialize_copy).with(b)
    a.send(:initialize_dup, b)
  end
end