aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/proc/shared/dup.rb
blob: fb6fff299dac446fbd967ad0c43446908a8f6d63 (plain)
1
2
3
4
5
6
7
8
9
10
describe :proc_dup, shared: true do
  it "returns a copy of self" do
    a = lambda { "hello" }
    b = a.send(@method)

    a.should_not equal(b)

    a.call.should == b.call
  end
end