[bigdecimal] Fix deprecation warning test

This commit is contained in:
Kenta Murata 2020-12-19 21:13:33 +09:00
Родитель 8986f948e0
Коммит 8355a3e17b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CEFE8AFB6081B062
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -611,9 +611,13 @@ class TestBigDecimal < Test::Unit::TestCase
end
def test_precs_deprecated
saved = Warning[:deprecated]
Warning[:deprecated] = true
assert_warn(/BigDecimal#precs is deprecated and will be removed in the future/) do
BigDecimal("1").precs
end
ensure
Warning[:deprecated] = saved
end
def test_precs