File: clone.rb

package info (click to toggle)
ruby3.3 3.3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,620 kB
  • sloc: ruby: 1,244,308; ansic: 836,474; yacc: 28,074; pascal: 6,748; sh: 3,913; python: 1,719; cpp: 1,158; makefile: 742; asm: 712; javascript: 394; lisp: 97; perl: 62; awk: 36; sed: 23; xml: 4
file content (56 lines) | stat: -rw-r--r-- 1,487 bytes parent folder | download | duplicates (4)
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