summaryrefslogtreecommitdiff
path: root/spec/ruby/core/binding/shared/clone.rb
blob: 1224b8ec7d0a15465477514f8b29f9dfb9088edd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
describe :binding_clone, shared: true do
  before :each do
    @b1 = BindingSpecs::Demo.new(99).get_binding
    @b2 = @b1.send(@method)
    @b3 = BindingSpecs::Demo.new(99).get_binding_in_block
    @b4 = @b3.send(@method)
  end

  it "returns a copy of the Binding object" do
    [[@b1, @b2, "a"],
     [@b3, @b4, "a", "b"]].each do |b1, b2, *vars|
      b1.should_not == b2

      eval("@secret", b1).should == eval("@secret", b2)
      eval("square(2)", b1).should == eval("square(2)", b2)
      eval("self.square(2)", b1).should == eval("self.square(2)", b2)
      vars.each do |v|
        eval("#{v}", b1).should == eval("#{v}", b2)
      end
    end
  end

  it "is a shallow copy of the Binding object" do
    [[@b1, @b2, "a"],
     [@b3, @b4, "a", "b"]].each do |b1, b2, *vars|
      vars.each do |v|
        eval("#{v} = false", b1)
        eval("#{v}", b2).should == false
      end
      b1.local_variable_set(:x, 37)
      b2.local_variable_defined?(:x).should == false
    end
  end

  ruby_version_is "3.4" do
    it "copies instance variables" do
      @b1.instance_variable_set(:@ivar, 1)
      cl = @b1.send(@method)
      cl.instance_variables.should == [:@ivar]
    end

    it "copies the finalizer" do
      code = <<-RUBY
        obj = binding

        ObjectSpace.define_finalizer(obj, Proc.new { STDOUT.write "finalized\n" })

        obj.clone

        exit 0
      RUBY

      ruby_exe(code).lines.sort.should == ["finalized\n", "finalized\n"]
    end
  end
end