From b83efadb32fe55ba7a7d23d650a8adc1a351eab7 Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Tue, 5 Jun 2007 16:51:49 +0000 Subject: Assume html format when rendering partials in RJS. #8076 [Rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6950 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/render_test.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'actionpack/test/controller') diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb index 510d1a8765..8b4149dcb4 100644 --- a/actionpack/test/controller/render_test.rb +++ b/actionpack/test/controller/render_test.rb @@ -142,6 +142,16 @@ class TestController < ActionController::Base end end + def respond_to_partial_as_rjs + respond_to do |format| + format.js do + render :update do |page| + page.replace :foo, :partial => 'partial' + end + end + end + end + def rescue_action(e) raise end private @@ -388,6 +398,11 @@ class RenderTest < Test::Unit::TestCase assert_equal %(Element.replace("foo", "partial html");), @response.body end + def test_should_render_html_formatted_partial_with_rjs_and_js_format + xhr :get, :respond_to_partial_as_rjs + assert_equal %(Element.replace("foo", "partial html");), @response.body + end + def test_should_render_js_partial xhr :get, :partial, :format => 'js' assert_equal 'partial js', @response.body -- cgit v1.2.3