aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-01-11 04:45:06 +0000
committerMichael Koziarski <michael@koziarski.com>2008-01-11 04:45:06 +0000
commite6de95889dd361359bcd885c9f38087f14f57628 (patch)
tree6886ef6ae276e44d41df2e6b077f35ee3ae00a6f /actionpack/test/controller
parentfeea0f106ed705986f2efc1d244b03df9a45739b (diff)
downloadrails-e6de95889dd361359bcd885c9f38087f14f57628.tar.gz
rails-e6de95889dd361359bcd885c9f38087f14f57628.tar.bz2
rails-e6de95889dd361359bcd885c9f38087f14f57628.zip
* Pass around handler instances, not their classes [Koz]
* Move compilation, rendering and 'compilable?' checks into the Handlers [Koz] * Remove delegate_* methods as the handler is now an instance [Koz] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8624 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/custom_handler_test.rb2
-rw-r--r--actionpack/test/controller/layout_test.rb3
2 files changed, 3 insertions, 2 deletions
diff --git a/actionpack/test/controller/custom_handler_test.rb b/actionpack/test/controller/custom_handler_test.rb
index 672ffeeaf8..f3f2625daa 100644
--- a/actionpack/test/controller/custom_handler_test.rb
+++ b/actionpack/test/controller/custom_handler_test.rb
@@ -1,6 +1,6 @@
require 'abstract_unit'
-class CustomHandler
+class CustomHandler < ActionView::TemplateHandler
def initialize( view )
@view = view
end
diff --git a/actionpack/test/controller/layout_test.rb b/actionpack/test/controller/layout_test.rb
index 1a2134847e..11ad4a20af 100644
--- a/actionpack/test/controller/layout_test.rb
+++ b/actionpack/test/controller/layout_test.rb
@@ -31,7 +31,7 @@ end
class MultipleExtensions < LayoutTest
end
-class MabView
+class MabView < ActionView::TemplateHandler
def initialize(view)
end
@@ -67,6 +67,7 @@ class LayoutAutoDiscoveryTest < Test::Unit::TestCase
get :hello
assert_equal 'layouts/third_party_template_library', @controller.active_layout
assert_equal 'layouts/third_party_template_library', @response.layout
+ assert_response :success
assert_equal 'Mab', @response.body
end