diff options
author | rick <technoweenie@gmail.com> | 2008-06-08 14:04:04 -0400 |
---|---|---|
committer | rick <technoweenie@gmail.com> | 2008-06-08 14:04:04 -0400 |
commit | faad1e32a8ab81890018ba89d191607778830cf0 (patch) | |
tree | a7d07b839fae5004fac164cdceb9d76b9a568af2 /railties/test | |
parent | 138adbf156905f5cc6669ba33dd94802c82514d9 (diff) | |
download | rails-faad1e32a8ab81890018ba89d191607778830cf0.tar.gz rails-faad1e32a8ab81890018ba89d191607778830cf0.tar.bz2 rails-faad1e32a8ab81890018ba89d191607778830cf0.zip |
Fix discrepancies with loading rails/init.rb from gems. [#324 state:resolved]
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/plugin_loader_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/plugin_loader_test.rb b/railties/test/plugin_loader_test.rb index e5fc0926eb..f429bae15c 100644 --- a/railties/test/plugin_loader_test.rb +++ b/railties/test/plugin_loader_test.rb @@ -94,7 +94,7 @@ uses_mocha "Plugin Loader Tests" do def test_should_add_plugin_load_paths_to_global_LOAD_PATH_array only_load_the_following_plugins! [:stubby, :acts_as_chunky_bacon] - stubbed_application_lib_index_in_LOAD_PATHS = 5 + stubbed_application_lib_index_in_LOAD_PATHS = 4 @loader.stubs(:application_lib_index).returns(stubbed_application_lib_index_in_LOAD_PATHS) @loader.add_plugin_load_paths |