aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/dependencies_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/dependencies_test.rb')
-rw-r--r--activesupport/test/dependencies_test.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/activesupport/test/dependencies_test.rb b/activesupport/test/dependencies_test.rb
index ec5116bff4..f98d823f00 100644
--- a/activesupport/test/dependencies_test.rb
+++ b/activesupport/test/dependencies_test.rb
@@ -220,11 +220,12 @@ class DependenciesTest < Test::Unit::TestCase
$:.push(path)
with_autoloading_fixtures do
- RequiresConstant
+ # The _ = assignments are to prevent warnings
+ _ = RequiresConstant
assert defined?(RequiresConstant)
assert defined?(LoadedConstant)
ActiveSupport::Dependencies.clear
- RequiresConstant
+ _ = RequiresConstant
assert defined?(RequiresConstant)
assert defined?(LoadedConstant)
end
@@ -241,11 +242,12 @@ class DependenciesTest < Test::Unit::TestCase
$:.push(path)
with_autoloading_fixtures do
- LoadsConstant
+ # The _ = assignments are to prevent warnings
+ _ = LoadsConstant
assert defined?(LoadsConstant)
assert defined?(LoadedConstant)
ActiveSupport::Dependencies.clear
- LoadsConstant
+ _ = LoadsConstant
assert defined?(LoadsConstant)
assert defined?(LoadedConstant)
end