aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/test_helper.rb
diff options
context:
space:
mode:
authorYehuda Katz and Carl Lerche <wycats@gmail.com>2009-03-23 18:06:47 -0700
committerYehuda Katz and Carl Lerche <wycats@gmail.com>2009-03-23 18:06:47 -0700
commit1d3e2c2b7333c90f2ef26fd0a3c6184aeaeb7e8a (patch)
tree35ae0a1a2e8cd0ed3a105fbc08ddcc08014cb976 /actionpack/test/new_base/test_helper.rb
parenta501638e9dcf55e45613637c52e4169b6324f285 (diff)
downloadrails-1d3e2c2b7333c90f2ef26fd0a3c6184aeaeb7e8a.tar.gz
rails-1d3e2c2b7333c90f2ef26fd0a3c6184aeaeb7e8a.tar.bz2
rails-1d3e2c2b7333c90f2ef26fd0a3c6184aeaeb7e8a.zip
In the middle of some refactoring... some fails due to changes in AbstractController not yet reflected in ActionController tests
Diffstat (limited to 'actionpack/test/new_base/test_helper.rb')
-rw-r--r--actionpack/test/new_base/test_helper.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/actionpack/test/new_base/test_helper.rb b/actionpack/test/new_base/test_helper.rb
index e33b4239ad..c472a943e5 100644
--- a/actionpack/test/new_base/test_helper.rb
+++ b/actionpack/test/new_base/test_helper.rb
@@ -38,12 +38,18 @@ module ActionController
include ActionController::Renderer
def self.inherited(klass)
- @subclasses ||= []
- @subclasses << klass.to_s
+ ::ActionController::Base2.subclasses << klass.to_s
+ super
end
def self.subclasses
- @subclasses
+ @subclasses ||= []
+ end
+
+ def self.app_loaded!
+ @subclasses.each do |subclass|
+ subclass.constantize._write_layout_method
+ end
end
# append_view_path File.join(File.dirname(__FILE__), '..', 'fixtures')