Prevent accidental use of assert_raises

This commit is contained in:
Nobuyoshi Nakada 2022-06-25 19:05:36 +09:00
Родитель d2166c09b0
Коммит f159bbd17d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -3,6 +3,10 @@
module Test
module Unit
module Assertions
def assert_raises(*exp, &b)
raise NoMethodError, "use assert_raise", caller
end
def _assertions= n # :nodoc:
@_assertions = n
end

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

@ -563,10 +563,6 @@ module Test
assert yield, *msgs
end
def assert_raises(*exp, &b)
raise NoMethodError, "use assert_raise", caller
end
# :call-seq:
# assert_nothing_thrown( failure_message = nil, &block )
#