From 424a5a7d46176eaa9617ad4fdc99d8c2be53b186 Mon Sep 17 00:00:00 2001 From: Kassio Borges Date: Fri, 23 Aug 2013 22:46:49 -0300 Subject: fix issue #11605 --- .../test/fixtures/test/_changing_priority.html.erb | 1 - .../test/fixtures/test/_changing_priority.json.erb | 1 - .../test/fixtures/test/_first_json_partial.json.erb | 1 - .../test/fixtures/test/_json_change_priority.json.erb | 0 .../test/fixtures/test/_second_json_partial.json.erb | 1 - actionpack/test/fixtures/test/html_template.html.erb | 1 - actionpack/test/template/render_test.rb | 17 +++++++---------- 7 files changed, 7 insertions(+), 15 deletions(-) delete mode 100644 actionpack/test/fixtures/test/_changing_priority.html.erb delete mode 100644 actionpack/test/fixtures/test/_changing_priority.json.erb delete mode 100644 actionpack/test/fixtures/test/_first_json_partial.json.erb delete mode 100644 actionpack/test/fixtures/test/_json_change_priority.json.erb delete mode 100644 actionpack/test/fixtures/test/_second_json_partial.json.erb delete mode 100644 actionpack/test/fixtures/test/html_template.html.erb (limited to 'actionpack/test') diff --git a/actionpack/test/fixtures/test/_changing_priority.html.erb b/actionpack/test/fixtures/test/_changing_priority.html.erb deleted file mode 100644 index 3225efc49a..0000000000 --- a/actionpack/test/fixtures/test/_changing_priority.html.erb +++ /dev/null @@ -1 +0,0 @@ -HTML \ No newline at end of file diff --git a/actionpack/test/fixtures/test/_changing_priority.json.erb b/actionpack/test/fixtures/test/_changing_priority.json.erb deleted file mode 100644 index 7fa41dce66..0000000000 --- a/actionpack/test/fixtures/test/_changing_priority.json.erb +++ /dev/null @@ -1 +0,0 @@ -JSON \ No newline at end of file diff --git a/actionpack/test/fixtures/test/_first_json_partial.json.erb b/actionpack/test/fixtures/test/_first_json_partial.json.erb deleted file mode 100644 index 790ee896db..0000000000 --- a/actionpack/test/fixtures/test/_first_json_partial.json.erb +++ /dev/null @@ -1 +0,0 @@ -<%= render :partial => "test/second_json_partial" %> \ No newline at end of file diff --git a/actionpack/test/fixtures/test/_json_change_priority.json.erb b/actionpack/test/fixtures/test/_json_change_priority.json.erb deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/actionpack/test/fixtures/test/_second_json_partial.json.erb b/actionpack/test/fixtures/test/_second_json_partial.json.erb deleted file mode 100644 index 5ebb7f1afd..0000000000 --- a/actionpack/test/fixtures/test/_second_json_partial.json.erb +++ /dev/null @@ -1 +0,0 @@ -Third level \ No newline at end of file diff --git a/actionpack/test/fixtures/test/html_template.html.erb b/actionpack/test/fixtures/test/html_template.html.erb deleted file mode 100644 index 1b483357bd..0000000000 --- a/actionpack/test/fixtures/test/html_template.html.erb +++ /dev/null @@ -1 +0,0 @@ -<%= render :partial => "test/first_json_partial", :formats => :json %> \ No newline at end of file diff --git a/actionpack/test/template/render_test.rb b/actionpack/test/template/render_test.rb index 72f494c811..03f3a34681 100644 --- a/actionpack/test/template/render_test.rb +++ b/actionpack/test/template/render_test.rb @@ -54,16 +54,6 @@ module RenderTestCases assert_equal "Hello world", @view.render(:template => "test/one", :formats => [:html]) end - def test_render_partial_implicitly_use_format_of_the_rendered_partial - @view.lookup_context.formats = [:html] - assert_equal "Third level", @view.render(:template => "test/html_template") - end - - def test_render_partial_use_last_prepended_format_for_partials_with_the_same_names - @view.lookup_context.formats = [:html] - assert_equal "\nHTML Template, but JSON partial", @view.render(:template => "test/change_priority") - end - def test_render_template_with_a_missing_partial_of_another_format @view.lookup_context.formats = [:html] assert_raise ActionView::Template::Error, "Missing partial /missing with {:locale=>[:en], :formats=>[:json], :handlers=>[:erb, :builder]}" do @@ -71,6 +61,13 @@ module RenderTestCases end end + def test_render_using_context_format_as_default + @view.lookup_context.formats = [:html] + assert_equal "partial html", @view.render('test/partial') + assert_equal "partial js", @view.render(:partial => 'test/partial', :formats => :js) + assert_equal "partial html", @view.render('test/partial') + end + def test_render_file_with_locale assert_equal "

Kein Kommentar

", @view.render(:file => "comments/empty", :locale => [:de]) assert_equal "

Kein Kommentar

", @view.render(:file => "comments/empty", :locale => :de) -- cgit v1.2.3