aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/render_test.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-05-15 03:13:32 +0000
committerRick Olson <technoweenie@gmail.com>2007-05-15 03:13:32 +0000
commit80074cb4de2e60cd771b76d396d61e5c4bc0aff6 (patch)
treef8d6991a146e1268750f2be8b1e3ff62e9dbbc98 /actionpack/test/controller/render_test.rb
parentf8273e430916f8c7b0d21ad14aab90e427f8c0a6 (diff)
downloadrails-80074cb4de2e60cd771b76d396d61e5c4bc0aff6.tar.gz
rails-80074cb4de2e60cd771b76d396d61e5c4bc0aff6.tar.bz2
rails-80074cb4de2e60cd771b76d396d61e5c4bc0aff6.zip
Assume that rendered partials go by the HTML format by default
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6734 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller/render_test.rb')
-rw-r--r--actionpack/test/controller/render_test.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb
index d51af51454..968559fcc2 100644
--- a/actionpack/test/controller/render_test.rb
+++ b/actionpack/test/controller/render_test.rb
@@ -132,6 +132,16 @@ class TestController < ActionController::Base
@foo = render_to_string :inline => "this is a test"
end
+ def partial
+ render :partial => 'partial'
+ end
+
+ def partial_as_rjs
+ render :update do |page|
+ page.replace :foo, :partial => 'partial'
+ end
+ end
+
def rescue_action(e) raise end
private
@@ -368,6 +378,15 @@ class RenderTest < Test::Unit::TestCase
assert_equal '<test>passed formatted html erb</test>', @response.body
end
+ def test_should_render_html_formatted_partial
+ get :partial
+ assert_equal 'partial html', @response.body
+ end
+
+ def test_should_render_html_formatted_partial_with_rjs
+ xhr :get, :partial_as_rjs
+ assert_equal %(Element.replace("foo", "partial html");), @response.body
+ end
protected
def assert_deprecated_render(&block)