mirror of
https://github.com/ruby/ruby.git
synced 2025-09-20 02:53:57 +02:00
* test/ruby/test_math.rb: override tests must always put to_f back
Conflicts: test/ruby/test_math.rb git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53901 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c06dd1ea72
commit
4a147572a2
1 changed files with 3 additions and 3 deletions
|
@ -288,7 +288,7 @@ class TestMath < Test::Unit::TestCase
|
|||
check(Math.cos((0 + 1)._to_f), Math.cos(0))
|
||||
check(Math.exp((0 + 1)._to_f), Math.exp(0))
|
||||
check(Math.log((0 + 1)._to_f), Math.log(0))
|
||||
|
||||
ensure
|
||||
Fixnum.class_eval { undef to_f; alias to_f _to_f; undef _to_f }
|
||||
end
|
||||
|
||||
|
@ -306,7 +306,7 @@ class TestMath < Test::Unit::TestCase
|
|||
|
||||
check(Math.cos((1 << 62 << 1)._to_f), Math.cos(1 << 62))
|
||||
check(Math.log((1 << 62 << 1)._to_f), Math.log(1 << 62))
|
||||
|
||||
ensure
|
||||
Bignum.class_eval { undef to_f; alias to_f _to_f; undef _to_f }
|
||||
end
|
||||
|
||||
|
@ -325,7 +325,7 @@ class TestMath < Test::Unit::TestCase
|
|||
check(Math.cos((0r + 1)._to_f), Math.cos(0r))
|
||||
check(Math.exp((0r + 1)._to_f), Math.exp(0r))
|
||||
check(Math.log((0r + 1)._to_f), Math.log(0r))
|
||||
|
||||
ensure
|
||||
Rational.class_eval { undef to_f; alias to_f _to_f; undef _to_f }
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue