aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base/render_template_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-10-07 21:30:19 +0200
committerJosé Valim <jose.valim@gmail.com>2010-10-07 21:31:31 +0200
commitc7760809bfc8e19362272b71b23a294d48195d65 (patch)
tree1666edc988670ebe6ccc966a778ebae1759b7f43 /actionpack/test/controller/new_base/render_template_test.rb
parentc563f10f3e8083bebe32200fa065748c8bcb65c9 (diff)
downloadrails-c7760809bfc8e19362272b71b23a294d48195d65.tar.gz
rails-c7760809bfc8e19362272b71b23a294d48195d65.tar.bz2
rails-c7760809bfc8e19362272b71b23a294d48195d65.zip
Allow cache to be temporarily disabled through lookup_context.
Diffstat (limited to 'actionpack/test/controller/new_base/render_template_test.rb')
-rw-r--r--actionpack/test/controller/new_base/render_template_test.rb13
1 files changed, 12 insertions, 1 deletions
diff --git a/actionpack/test/controller/new_base/render_template_test.rb b/actionpack/test/controller/new_base/render_template_test.rb
index 8f5f51d70b..d31193a063 100644
--- a/actionpack/test/controller/new_base/render_template_test.rb
+++ b/actionpack/test/controller/new_base/render_template_test.rb
@@ -11,7 +11,8 @@ module RenderTemplate
"with_raw.html.erb" => "Hello <%=raw '<strong>this is raw</strong>' %>",
"test/with_json.html.erb" => "<%= render :template => 'test/with_json.json' %>",
"test/with_json.json.erb" => "<%= render :template => 'test/final' %>",
- "test/final.json.erb" => "{ final: json }"
+ "test/final.json.erb" => "{ final: json }",
+ "test/with_error.html.erb" => "<%= idontexist %>"
)]
def index
@@ -49,6 +50,10 @@ module RenderTemplate
def with_raw
render :template => "with_raw"
end
+
+ def with_error
+ render :template => "test/with_error"
+ end
end
class TestWithoutLayout < Rack::TestCase
@@ -101,6 +106,12 @@ module RenderTemplate
assert_content_type "text/html; charset=utf-8"
assert_response "{ final: json }"
end
+
+ test "rendering a template with error properly exceprts the code" do
+ get :with_error
+ assert_status 500
+ assert_match "undefined local variable or method `idontexist'", response.body
+ end
end
class WithLayoutController < ::ApplicationController