summaryrefslogtreecommitdiff
path: root/spec/ruby/core/method
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2019-07-27 12:40:09 +0200
committerBenoit Daloze <eregontp@gmail.com>2019-07-27 12:40:09 +0200
commit5c276e1cc91c5ab2a41fbf7827af2fed914a2bc0 (patch)
tree05b5c68c8b2a00224d4646ea3b26ce3877efaadd /spec/ruby/core/method
parenta06301b103371b0b7da8eaca26ba744961769f99 (diff)
Update to ruby/spec@875a09e
Diffstat (limited to 'spec/ruby/core/method')
-rw-r--r--spec/ruby/core/method/curry_spec.rb10
-rw-r--r--spec/ruby/core/method/parameters_spec.rb2
-rw-r--r--spec/ruby/core/method/shared/call.rb4
3 files changed, 8 insertions, 8 deletions
diff --git a/spec/ruby/core/method/curry_spec.rb b/spec/ruby/core/method/curry_spec.rb
index 36449f7512..219de0f6b5 100644
--- a/spec/ruby/core/method/curry_spec.rb
+++ b/spec/ruby/core/method/curry_spec.rb
@@ -23,14 +23,14 @@ describe "Method#curry" do
end
it "raises ArgumentError when the method requires less arguments than the given arity" do
- lambda { @obj.method(:zero).curry(1) }.should raise_error(ArgumentError)
- lambda { @obj.method(:one_req_one_opt).curry(3) }.should raise_error(ArgumentError)
- lambda { @obj.method(:two_req_one_opt_with_block).curry(4) }.should raise_error(ArgumentError)
+ -> { @obj.method(:zero).curry(1) }.should raise_error(ArgumentError)
+ -> { @obj.method(:one_req_one_opt).curry(3) }.should raise_error(ArgumentError)
+ -> { @obj.method(:two_req_one_opt_with_block).curry(4) }.should raise_error(ArgumentError)
end
it "raises ArgumentError when the method requires more arguments than the given arity" do
- lambda { @obj.method(:two_req_with_splat).curry(1) }.should raise_error(ArgumentError)
- lambda { @obj.method(:one_req).curry(0) }.should raise_error(ArgumentError)
+ -> { @obj.method(:two_req_with_splat).curry(1) }.should raise_error(ArgumentError)
+ -> { @obj.method(:one_req).curry(0) }.should raise_error(ArgumentError)
end
end
end
diff --git a/spec/ruby/core/method/parameters_spec.rb b/spec/ruby/core/method/parameters_spec.rb
index 1de3901040..3fdaf9ce6f 100644
--- a/spec/ruby/core/method/parameters_spec.rb
+++ b/spec/ruby/core/method/parameters_spec.rb
@@ -12,7 +12,7 @@ describe "Method#parameters" do
def one_splat_two_req(*a,b,c); end
def one_splat_one_req_with_block(*a,b,&blk); end
- def one_opt_with_stabby(a=->(b){true}); end
+ def one_opt_with_stabby(a=-> b { true }); end
def one_unnamed_splat(*); end
diff --git a/spec/ruby/core/method/shared/call.rb b/spec/ruby/core/method/shared/call.rb
index f178b9da7d..f26e373695 100644
--- a/spec/ruby/core/method/shared/call.rb
+++ b/spec/ruby/core/method/shared/call.rb
@@ -9,10 +9,10 @@ describe :method_call, shared: true do
end
it "raises an ArgumentError when given incorrect number of arguments" do
- lambda {
+ -> {
MethodSpecs::Methods.new.method(:two_req).send(@method, 1, 2, 3)
}.should raise_error(ArgumentError)
- lambda {
+ -> {
MethodSpecs::Methods.new.method(:two_req).send(@method, 1)
}.should raise_error(ArgumentError)
end