aboutsummaryrefslogtreecommitdiffstats
path: root/railties/helpers/test_helper.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-15 11:30:09 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-15 11:30:09 +0000
commit4d9cda5732538e9cdb325b2ffa7f9e97f8ac2ec0 (patch)
treeb00a149a047e97b978be9bcbcfe5b9e4b02ec0d5 /railties/helpers/test_helper.rb
parenta02a96226e08557ba6abf70fa80168fe512b8f93 (diff)
downloadrails-4d9cda5732538e9cdb325b2ffa7f9e97f8ac2ec0.tar.gz
rails-4d9cda5732538e9cdb325b2ffa7f9e97f8ac2ec0.tar.bz2
rails-4d9cda5732538e9cdb325b2ffa7f9e97f8ac2ec0.zip
Renamed AbstractApplicationController and abstract_application.rb to ApplicationController and application.rb, so that it will be possible for the framework to automatically pick up on app/views/layouts/application.rhtml and app/helpers/application.rb
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@159 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/helpers/test_helper.rb')
-rw-r--r--railties/helpers/test_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/helpers/test_helper.rb b/railties/helpers/test_helper.rb
index ce1150c606..83f4069ffd 100644
--- a/railties/helpers/test_helper.rb
+++ b/railties/helpers/test_helper.rb
@@ -1,6 +1,6 @@
ENV["RAILS_ENV"] ||= "test"
require File.dirname(__FILE__) + "/../config/environment"
-require 'abstract_application'
+require 'application'
require 'test/unit'
require 'active_record/fixtures'