aboutsummaryrefslogtreecommitdiffstats
path: root/railties/helpers/test_helper.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-11-30 17:19:01 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-11-30 17:19:01 +0000
commit5b38d8557122723aa7c11c28d4c2c93464982766 (patch)
treed7ef5df5d7121f31e897ddeac94dbda64fa44833 /railties/helpers/test_helper.rb
parent38e5fe97be08109fb8a416238ff8e3aaacbfc703 (diff)
downloadrails-5b38d8557122723aa7c11c28d4c2c93464982766.tar.gz
rails-5b38d8557122723aa7c11c28d4c2c93464982766.tar.bz2
rails-5b38d8557122723aa7c11c28d4c2c93464982766.zip
AbstractApplicationController and the individual controllers are now completely reloaded on each request if "reload_dependencies" is set to true. This makes it possible to REMOVE methods and constants and have the changes reflected. Beaware that this is still not possible for models, though.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@31 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/helpers/test_helper.rb')
-rw-r--r--railties/helpers/test_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/helpers/test_helper.rb b/railties/helpers/test_helper.rb
index d348f26517..4d683e3500 100644
--- a/railties/helpers/test_helper.rb
+++ b/railties/helpers/test_helper.rb
@@ -1,5 +1,6 @@
ENV["RAILS_ENV"] ||= "test"
require File.dirname(__FILE__) + "/../config/environment"
+require 'abstract_application'
require 'test/unit'
require 'active_record/fixtures'