summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_complex.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ruby/test_complex.rb b/test/ruby/test_complex.rb
index daf972f7b4..7c1418b2bf 100644
--- a/test/ruby/test_complex.rb
+++ b/test/ruby/test_complex.rb
@@ -272,6 +272,7 @@ class Complex_Test < Test::Unit::TestCase
def test_add_with_redefining_int_plus
assert_in_out_err([], <<-'end;', ['true'], [])
class Integer
+ remove_method :+
def +(other); 42; end
end
a = Complex(1, 2) + Complex(0, 1)
@@ -282,6 +283,7 @@ class Complex_Test < Test::Unit::TestCase
def test_add_with_redefining_float_plus
assert_in_out_err([], <<-'end;', ['true'], [])
class Float
+ remove_method :+
def +(other); 42.0; end
end
a = Complex(1, 2.0) + Complex(0, 1)
@@ -292,6 +294,7 @@ class Complex_Test < Test::Unit::TestCase
def test_add_with_redefining_rational_plus
assert_in_out_err([], <<-'end;', ['true'], [])
class Rational
+ remove_method :+
def +(other); 355/113r; end
end
a = Complex(1, 2r) + Complex(0, 1)