* test/bigdecimal/test_bigmath.rb (test_log): add assertion for r44558.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44561 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-01-11 10:26:07 +00:00
Родитель 1367f28a49
Коммит 0e9cad9a8e
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1,4 +1,5 @@
require_relative "testbase" require_relative "testbase"
require_relative "../ruby/envutil"
require "bigdecimal/math" require "bigdecimal/math"
class TestBigMath < Test::Unit::TestCase class TestBigMath < Test::Unit::TestCase
@ -66,5 +67,8 @@ class TestBigMath < Test::Unit::TestCase
assert_in_epsilon(Math.log(10)*1000, BigMath.log(BigDecimal("1e1000"), 10)) assert_in_epsilon(Math.log(10)*1000, BigMath.log(BigDecimal("1e1000"), 10))
assert_raise(Math::DomainError) {BigMath.log(BigDecimal("0"), 10)} assert_raise(Math::DomainError) {BigMath.log(BigDecimal("0"), 10)}
assert_raise(Math::DomainError) {BigMath.log(BigDecimal("-1"), 10)} assert_raise(Math::DomainError) {BigMath.log(BigDecimal("-1"), 10)}
assert_separately(%w[-rbigdecimal], <<-SRC)
assert_in_epsilon(Math.log(10)*19999999999999, BigMath.log(BigDecimal("1E19999999999999"), 10))
SRC
end end
end end