aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/layout_test.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-04-19 18:52:14 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-04-19 18:59:13 +0100
commitef4c65088fb907fc819e6b5d83d284c38cdaabfc (patch)
treee4e674e270a04a71deb0aa5741ae6c4f16b847db /actionpack/test/controller/layout_test.rb
parent534c6b2444970d59aea654aa3c6aeb41c206d14d (diff)
downloadrails-ef4c65088fb907fc819e6b5d83d284c38cdaabfc.tar.gz
rails-ef4c65088fb907fc819e6b5d83d284c38cdaabfc.tar.bz2
rails-ef4c65088fb907fc819e6b5d83d284c38cdaabfc.zip
Move missing template logic to ActionView
Diffstat (limited to 'actionpack/test/controller/layout_test.rb')
-rw-r--r--actionpack/test/controller/layout_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/layout_test.rb b/actionpack/test/controller/layout_test.rb
index 145543a357..3dc311b78a 100644
--- a/actionpack/test/controller/layout_test.rb
+++ b/actionpack/test/controller/layout_test.rb
@@ -216,7 +216,7 @@ class LayoutExceptionRaised < Test::Unit::TestCase
@controller = SetsNonExistentLayoutFile.new
get :hello
@response.template.class.module_eval { attr_accessor :exception }
- assert_equal ActionController::MissingTemplate, @response.template.exception.class
+ assert_equal ActionView::MissingTemplate, @response.template.exception.class
end
end