aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-05-15 06:36:34 +0000
committerRick Olson <technoweenie@gmail.com>2007-05-15 06:36:34 +0000
commitebf9b3737b9470c2fbedf39ac5cd5a4cba81afc1 (patch)
tree22e53d823c94c0e351c07bf94dadb4f4744ce9f4 /actionpack/test
parentfa3618d3753b5591ed19d98d52c55716d814e34a (diff)
downloadrails-ebf9b3737b9470c2fbedf39ac5cd5a4cba81afc1.tar.gz
rails-ebf9b3737b9470c2fbedf39ac5cd5a4cba81afc1.tar.bz2
rails-ebf9b3737b9470c2fbedf39ac5cd5a4cba81afc1.zip
Add some performance enhancements to ActionView.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6736 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/layout_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/controller/layout_test.rb b/actionpack/test/controller/layout_test.rb
index 5689ed0711..1f8baca49a 100644
--- a/actionpack/test/controller/layout_test.rb
+++ b/actionpack/test/controller/layout_test.rb
@@ -66,6 +66,7 @@ class LayoutAutoDiscoveryTest < Test::Unit::TestCase
@controller = ThirdPartyTemplateLibraryController.new
get :hello
assert_equal 'layouts/third_party_template_library', @controller.active_layout
+ assert_equal 'layouts/third_party_template_library', @response.layout
assert_equal 'Mab', @response.body
end