2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
|
|
|
require_relative 'shared/lambda'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
# The functionality of Proc objects is specified in core/proc
|
|
|
|
|
|
|
|
describe "Kernel.proc" do
|
|
|
|
it "is a private method" do
|
|
|
|
Kernel.should have_private_instance_method(:proc)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "creates a proc-style Proc if given a literal block" do
|
|
|
|
l = proc { 42 }
|
|
|
|
l.lambda?.should be_false
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returned the passed Proc if given an existing Proc" do
|
2019-07-27 06:40:09 -04:00
|
|
|
some_lambda = -> {}
|
2017-05-07 08:04:49 -04:00
|
|
|
some_lambda.lambda?.should be_true
|
|
|
|
l = proc(&some_lambda)
|
|
|
|
l.should equal(some_lambda)
|
|
|
|
l.lambda?.should be_true
|
|
|
|
end
|
|
|
|
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :kernel_lambda, :proc
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
it "returns from the creation site of the proc, not just the proc itself" do
|
|
|
|
@reached_end_of_method = nil
|
|
|
|
def test
|
|
|
|
proc { return }.call
|
|
|
|
@reached_end_of_method = true
|
|
|
|
end
|
|
|
|
test
|
|
|
|
@reached_end_of_method.should be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Kernel#proc" do
|
2019-01-10 03:19:14 -05:00
|
|
|
ruby_version_is ""..."2.7" do
|
|
|
|
it "uses the implicit block from an enclosing method" do
|
|
|
|
def some_method
|
|
|
|
proc
|
|
|
|
end
|
|
|
|
|
|
|
|
prc = some_method { "hello" }
|
|
|
|
|
|
|
|
prc.call.should == "hello"
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
2019-01-10 03:19:14 -05:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-01-10 03:19:14 -05:00
|
|
|
ruby_version_is "2.7" do
|
|
|
|
it "can be created when called with no block" do
|
|
|
|
def some_method
|
|
|
|
proc
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-01-10 03:19:14 -05:00
|
|
|
-> {
|
|
|
|
some_method { "hello" }
|
2019-04-12 20:56:12 -04:00
|
|
|
}.should complain(/Capturing the given block using Proc.new is deprecated/)
|
2019-01-10 03:19:14 -05:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|