diff options
author | Nicholas Seckar <nseckar@gmail.com> | 2006-09-02 21:13:30 +0000 |
---|---|---|
committer | Nicholas Seckar <nseckar@gmail.com> | 2006-09-02 21:13:30 +0000 |
commit | 26f28e7cfaa91fa03af7fae15246cd38f917d443 (patch) | |
tree | 8b5bfd51b6457d15d503d40585990688879f1140 /activesupport/test | |
parent | d0696d764189996422c3dea649c388b7685a10e5 (diff) | |
download | rails-26f28e7cfaa91fa03af7fae15246cd38f917d443.tar.gz rails-26f28e7cfaa91fa03af7fae15246cd38f917d443.tar.bz2 rails-26f28e7cfaa91fa03af7fae15246cd38f917d443.zip |
Add ApplicationController special case to Dependencies.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4910 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/dependencies_test.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/activesupport/test/dependencies_test.rb b/activesupport/test/dependencies_test.rb index 5960425e8e..9c5ee0146a 100644 --- a/activesupport/test/dependencies_test.rb +++ b/activesupport/test/dependencies_test.rb @@ -404,7 +404,7 @@ class DependenciesTest < Test::Unit::TestCase assert ! Dependencies.autoloaded?("ModuleFolder::NestedClass") assert ! Dependencies.autoloaded?(ModuleFolder) - ModuleFolder::NestedClass + 1 if ModuleFolder::NestedClass # 1 if to avoid warning assert ! Dependencies.autoloaded?(ModuleFolder::NestedClass) end ensure @@ -412,4 +412,12 @@ class DependenciesTest < Test::Unit::TestCase Dependencies.load_once_paths = [] end + def test_application_should_special_case_application_controller + with_loading 'autoloading_fixtures' do + require_dependency 'application' + assert_equal 10, ApplicationController + assert Dependencies.autoloaded?(:ApplicationController) + end + end + end |