mirror of
https://github.com/ruby/ruby.git
synced 2025-09-20 02:53:57 +02:00
test_math.rb: use Float#infinite?
* test/ruby/test_math.rb (TestMath#assert_infinity): Float#finite? returns true also for NaN, so use Float#infinite? instead. [ruby-core:65117] [Feature #10261] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47635 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8b9afe6520
commit
5cd2d58396
2 changed files with 7 additions and 1 deletions
|
@ -3,7 +3,7 @@ require 'test/unit'
|
|||
class TestMath < Test::Unit::TestCase
|
||||
def assert_infinity(a, *rest)
|
||||
rest = ["not infinity: #{a.inspect}"] if rest.empty?
|
||||
assert_not_predicate(a, :finite?, *rest)
|
||||
assert_predicate(a, :infinite?, *rest)
|
||||
end
|
||||
|
||||
def assert_nan(a, *rest)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue