Sha256: 7196e743d76c1cdadfbc4e0d7c1bde92bca169017f855faf60aed319a20574a8
Contents?: true
Size: 516 Bytes
Versions: 83
Compression:
Stored size: 516 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Proc as a block pass argument" do def revivify(&b) b end it "remains the same object if re-vivified by the target method" do p = Proc.new {} p2 = revivify(&p) p.object_id.should == p2.object_id p.should == p2 end it "remains the same object if reconstructed with Proc.new" do p = Proc.new {} p2 = Proc.new(&p) p.object_id.should == p2.object_id p.should == p2 end end
Version data entries
83 entries across 83 versions & 1 rubygems