提交 180e2e5e 编写于 作者: K kennyj

silence warning: possibly useless use of a constant in void context

上级 6ed4ad13
......@@ -923,8 +923,10 @@ def test_remove_constant_does_not_trigger_loading_autoloads
def test_remove_constant_does_not_autoload_already_removed_parents_as_a_side_effect
with_autoloading_fixtures do
::A
::A::B
silence_warnings do
::A
::A::B
end
ActiveSupport::Dependencies.remove_constant('A')
ActiveSupport::Dependencies.remove_constant('A::B')
assert !defined?(A)
......@@ -934,7 +936,9 @@ def test_remove_constant_does_not_autoload_already_removed_parents_as_a_side_eff
def test_load_once_constants_should_not_be_unloaded
with_autoloading_fixtures do
ActiveSupport::Dependencies.autoload_once_paths = ActiveSupport::Dependencies.autoload_paths
::A.to_s
silence_warnings do
::A
end
assert defined?(A)
ActiveSupport::Dependencies.clear
assert defined?(A)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册