summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/shared/dup.rb
blob: eda1d6929d8c3e217566489f6b2f73d9516950e3 (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 = -> { "hello" }
    b = a.send(@method)

    a.should_not equal(b)

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