aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/integer/bit_xor_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/bit_xor_spec.rb')
-rw-r--r--spec/ruby/core/integer/bit_xor_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/ruby/core/integer/bit_xor_spec.rb b/spec/ruby/core/integer/bit_xor_spec.rb
index 65f88341e0..ac8826a52f 100644
--- a/spec/ruby/core/integer/bit_xor_spec.rb
+++ b/spec/ruby/core/integer/bit_xor_spec.rb
@@ -13,14 +13,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 xor")
obj.should_not_receive(:to_int)
- lambda { 3 ^ obj }.should raise_error(TypeError)
+ -> { 3 ^ obj }.should raise_error(TypeError)
end
end
@@ -55,18 +55,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 ^ 14.5 }.should raise_error(TypeError)
+ -> { @bignum ^ 14.5 }.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 xor")
obj.should_not_receive(:to_int)
- lambda { @bignum ^ obj }.should raise_error(TypeError)
+ -> { @bignum ^ obj }.should raise_error(TypeError)
end
end
end