aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/loading_module_tests.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/loading_module_tests.rb')
-rw-r--r--activesupport/test/loading_module_tests.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/activesupport/test/loading_module_tests.rb b/activesupport/test/loading_module_tests.rb
index 01361fae1e..22fc00db7e 100644
--- a/activesupport/test/loading_module_tests.rb
+++ b/activesupport/test/loading_module_tests.rb
@@ -92,6 +92,11 @@ class LoadingModuleTests < Test::Unit::TestCase
assert_equal :outer, @loading_module::ContentController.new.identifier
assert @loading_module::ContentController.object_id != @loading_module::Admin::ContentController.object_id
end
+
+ def test_access_to_controller_with_numbers
+ assert @loading_module.const_available?(:Area51Controller)
+ assert_not_nil @loading_module::Area51Controller
+ end
end
class LoadingModuleMultiPathTests < Test::Unit::TestCase
@@ -116,4 +121,4 @@ class LoadingModuleMultiPathTests < Test::Unit::TestCase
assert @loading_module::List.const_load!(:ListController)
assert_kind_of Class, @loading_module::List::ListController
end
-end \ No newline at end of file
+end