aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_text_test.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/render_text_test.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/render_text_test.rb')
-rw-r--r--actionpack/test/new_base/render_text_test.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/actionpack/test/new_base/render_text_test.rb b/actionpack/test/new_base/render_text_test.rb
index b80a9b4a79..a20ca5fb8c 100644
--- a/actionpack/test/new_base/render_text_test.rb
+++ b/actionpack/test/new_base/render_text_test.rb
@@ -1,5 +1,8 @@
require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")
+class ApplicationController < ActionController::Base2
+end
+
module HappyPath
class RenderTextWithoutLayoutsController < ActionController::Base2
@@ -10,11 +13,11 @@ module HappyPath
end
end
- class RenderTextWithLayoutsController < ActionController::Base2
+ class RenderTextWithLayoutsController < ::ApplicationController
self.view_paths = [ActionView::FixtureTemplate::FixturePath.new(
"layouts/application.html.erb" => "<%= yield %>, I'm here!",
"layouts/greetings.html.erb" => "<%= yield %>, I wish thee well."
- )]
+ )]
def render_hello_world
render :text => "hello david"
@@ -136,4 +139,6 @@ module HappyPath
assert_body "hello world"
assert_status 200
end
-end \ No newline at end of file
+end
+
+ActionController::Base2.app_loaded! \ No newline at end of file