From acb3d2cf755d6be35527d2ece57a5de415bb6cab Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 20 Feb 2005 00:02:02 +0000 Subject: Fixed internal calling git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@707 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/components_test.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'actionpack/test/controller/components_test.rb') diff --git a/actionpack/test/controller/components_test.rb b/actionpack/test/controller/components_test.rb index 36f15d8df5..7ad3108dd7 100644 --- a/actionpack/test/controller/components_test.rb +++ b/actionpack/test/controller/components_test.rb @@ -17,6 +17,14 @@ class CallerController < ActionController::Base render_template "Ring, ring: <%= render_component(:controller => 'callee', :action => 'being_called') %>" end + def internal_caller + render_template "Are you there? <%= render_component(:action => 'internal_callee') %>" + end + + def internal_callee + render_text "Yes, ma'am" + end + def rescue_action(e) raise end end @@ -58,4 +66,9 @@ class RenderTest < Test::Unit::TestCase get :calling_from_template assert_equal "Ring, ring: Lady of the House, speaking", @response.body end + + def test_internal_calling + get :internal_caller + assert_equal "Are you there? Yes, ma'am", @response.body + end end \ No newline at end of file -- cgit v1.2.3