aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/components_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 00:02:02 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 00:02:02 +0000
commitacb3d2cf755d6be35527d2ece57a5de415bb6cab (patch)
treec61b156c3eaaf4f92ba5dd8c1a3e5c16207bd076 /actionpack/test/controller/components_test.rb
parentcf6d77600ac132fd3f840c8e57d8e139da39f675 (diff)
downloadrails-acb3d2cf755d6be35527d2ece57a5de415bb6cab.tar.gz
rails-acb3d2cf755d6be35527d2ece57a5de415bb6cab.tar.bz2
rails-acb3d2cf755d6be35527d2ece57a5de415bb6cab.zip
Fixed internal calling
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@707 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller/components_test.rb')
-rw-r--r--actionpack/test/controller/components_test.rb13
1 files changed, 13 insertions, 0 deletions
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