зеркало из https://github.com/github/ruby.git
bidecimal: improve tests' independence (#3297)
Tests depending on the rounding mode must specify the appropriate rounding mode and restore to the original mode at the end.
This commit is contained in:
Родитель
3b96ad9b54
Коммит
9b433d34da
|
@ -334,6 +334,8 @@ class TestBigDecimal < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_save_rounding_mode
|
||||
saved_mode = BigDecimal.mode(BigDecimal::ROUND_MODE)
|
||||
|
||||
BigDecimal.mode(BigDecimal::ROUND_MODE, BigDecimal::ROUND_FLOOR)
|
||||
BigDecimal.save_rounding_mode do
|
||||
BigDecimal.mode(BigDecimal::ROUND_MODE, BigDecimal::ROUND_HALF_EVEN)
|
||||
|
@ -341,6 +343,8 @@ class TestBigDecimal < Test::Unit::TestCase
|
|||
assert_equal(BigDecimal::ROUND_FLOOR, BigDecimal.mode(BigDecimal::ROUND_MODE))
|
||||
|
||||
assert_equal(42, BigDecimal.save_rounding_mode { 42 })
|
||||
ensure
|
||||
BigDecimal.mode(BigDecimal::ROUND_MODE, saved_mode)
|
||||
end
|
||||
|
||||
def test_save_limit
|
||||
|
|
|
@ -61,15 +61,19 @@ class TestBigDecimalUtil < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_Complex_to_d
|
||||
assert_equal(BigDecimal("1"), Complex(1, 0).to_d)
|
||||
assert_equal(BigDecimal("0.333333333333333333333"),
|
||||
Complex(1.quo(3), 0).to_d(21))
|
||||
assert_equal(BigDecimal("0.1234567"), Complex(0.1234567, 0).to_d)
|
||||
assert_equal(BigDecimal("0.1235"), Complex(0.1234567, 0).to_d(4))
|
||||
BigDecimal.save_rounding_mode do
|
||||
BigDecimal.mode(BigDecimal::ROUND_MODE, BigDecimal::ROUND_HALF_EVEN)
|
||||
|
||||
assert_raise_with_message(ArgumentError, "can't omit precision for a Rational.") { Complex(1.quo(3), 0).to_d }
|
||||
assert_equal(BigDecimal("1"), Complex(1, 0).to_d)
|
||||
assert_equal(BigDecimal("0.333333333333333333333"),
|
||||
Complex(1.quo(3), 0).to_d(21))
|
||||
assert_equal(BigDecimal("0.1234567"), Complex(0.1234567, 0).to_d)
|
||||
assert_equal(BigDecimal("0.1235"), Complex(0.1234567, 0).to_d(4))
|
||||
|
||||
assert_raise_with_message(ArgumentError, "Unable to make a BigDecimal from non-zero imaginary number") { Complex(1, 1).to_d }
|
||||
assert_raise_with_message(ArgumentError, "can't omit precision for a Rational.") { Complex(1.quo(3), 0).to_d }
|
||||
|
||||
assert_raise_with_message(ArgumentError, "Unable to make a BigDecimal from non-zero imaginary number") { Complex(1, 1).to_d }
|
||||
end
|
||||
end
|
||||
|
||||
def test_String_to_d
|
||||
|
|
Загрузка…
Ссылка в новой задаче