diff options
author | Jamis Buck <jamis@37signals.com> | 2006-08-08 22:29:57 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2006-08-08 22:29:57 +0000 |
commit | e9b02840708226e5cf49a75364f7e273ef8f020e (patch) | |
tree | 526a9ab40edd22a7f561adf4cf4db5e471581af8 /railties | |
parent | 9bd007c7c7270f2816c6cde4a40b138edf82130c (diff) | |
download | rails-e9b02840708226e5cf49a75364f7e273ef8f020e.tar.gz rails-e9b02840708226e5cf49a75364f7e273ef8f020e.tar.bz2 rails-e9b02840708226e5cf49a75364f7e273ef8f020e.zip |
be sure to require_dependency on 'application', so that dependency loading is honored correctly
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4731 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/test_help.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/test_help.rb b/railties/lib/test_help.rb index dcf47364d5..12aaf9753f 100644 --- a/railties/lib/test_help.rb +++ b/railties/lib/test_help.rb @@ -1,4 +1,4 @@ -require 'application' +require_dependency 'application' # Make double-sure the RAILS_ENV is set to test, # so fixtures are loaded to the right database |