aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/integer/bit_or_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/bit_or_spec.rb')
-rw-r--r--spec/ruby/core/integer/bit_or_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/ruby/core/integer/bit_or_spec.rb b/spec/ruby/core/integer/bit_or_spec.rb
index 16ab430f8b..e486eeec10 100644
--- a/spec/ruby/core/integer/bit_or_spec.rb
+++ b/spec/ruby/core/integer/bit_or_spec.rb
@@ -15,14 +15,14 @@ describe "Integer#|" do
end
it "raises a TypeError when passed a Float" do
- lambda { (3 | 3.4) }.should raise_error(TypeError)
+ -> { (3 | 3.4) }.should raise_error(TypeError)
end
it "raises a TypeError and does not call #to_int when defined on an object" do
obj = mock("integer bit or")
obj.should_not_receive(:to_int)
- lambda { 3 | obj }.should raise_error(TypeError)
+ -> { 3 | obj }.should raise_error(TypeError)
end
end
@@ -51,18 +51,18 @@ describe "Integer#|" do
it "raises a TypeError when passed a Float" do
not_supported_on :opal do
- lambda {
+ -> {
bignum_value | bignum_value(0xffff).to_f
}.should raise_error(TypeError)
end
- lambda { @bignum | 9.9 }.should raise_error(TypeError)
+ -> { @bignum | 9.9 }.should raise_error(TypeError)
end
it "raises a TypeError and does not call #to_int when defined on an object" do
obj = mock("bignum bit or")
obj.should_not_receive(:to_int)
- lambda { @bignum | obj }.should raise_error(TypeError)
+ -> { @bignum | obj }.should raise_error(TypeError)
end
end
end