aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/rjust_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/rjust_spec.rb')
-rw-r--r--spec/ruby/core/string/rjust_spec.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/spec/ruby/core/string/rjust_spec.rb b/spec/ruby/core/string/rjust_spec.rb
index 2821b018e8..1ba298e8f3 100644
--- a/spec/ruby/core/string/rjust_spec.rb
+++ b/spec/ruby/core/string/rjust_spec.rb
@@ -49,10 +49,10 @@ describe "String#rjust with length, padding" do
end
it "raises a TypeError when length can't be converted to an integer" do
- lambda { "hello".rjust("x") }.should raise_error(TypeError)
- lambda { "hello".rjust("x", "y") }.should raise_error(TypeError)
- lambda { "hello".rjust([]) }.should raise_error(TypeError)
- lambda { "hello".rjust(mock('x')) }.should raise_error(TypeError)
+ -> { "hello".rjust("x") }.should raise_error(TypeError)
+ -> { "hello".rjust("x", "y") }.should raise_error(TypeError)
+ -> { "hello".rjust([]) }.should raise_error(TypeError)
+ -> { "hello".rjust(mock('x')) }.should raise_error(TypeError)
end
it "tries to convert padstr to a string using to_str" do
@@ -63,13 +63,13 @@ describe "String#rjust with length, padding" do
end
it "raises a TypeError when padstr can't be converted" do
- lambda { "hello".rjust(20, []) }.should raise_error(TypeError)
- lambda { "hello".rjust(20, Object.new)}.should raise_error(TypeError)
- lambda { "hello".rjust(20, mock('x')) }.should raise_error(TypeError)
+ -> { "hello".rjust(20, []) }.should raise_error(TypeError)
+ -> { "hello".rjust(20, Object.new)}.should raise_error(TypeError)
+ -> { "hello".rjust(20, mock('x')) }.should raise_error(TypeError)
end
it "raises an ArgumentError when padstr is empty" do
- lambda { "hello".rjust(10, '') }.should raise_error(ArgumentError)
+ -> { "hello".rjust(10, '') }.should raise_error(ArgumentError)
end
it "returns subclass instances when called on subclasses" do
@@ -106,7 +106,7 @@ describe "String#rjust with length, padding" do
it "raises an Encoding::CompatibilityError if the encodings are incompatible" do
pat = "ア".encode Encoding::EUC_JP
- lambda do
+ -> do
"あれ".rjust 5, pat
end.should raise_error(Encoding::CompatibilityError)
end