1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #8424 from kennyj/tiny_fixes_20121206

fix warning: possibly useless use of a constant in void context
This commit is contained in:
Xavier Noria 2012-12-05 08:13:01 -08:00
commit 396c0681ac

View file

@ -923,8 +923,10 @@ class DependenciesTest < ActiveSupport::TestCase
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 @@ class DependenciesTest < ActiveSupport::TestCase
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)