diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-02-20 16:48:43 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-02-20 17:52:14 -0200 |
commit | 70fd692c1eada44027f9581f84461ca87abba8c6 (patch) | |
tree | e22731e320d8915dfaa3911bb5d90e5f33e239a8 /actionpack/test/template | |
parent | 5e3b54d25aeb84c4d6806416fbd6c21c29564d6a (diff) | |
download | rails-70fd692c1eada44027f9581f84461ca87abba8c6.tar.gz rails-70fd692c1eada44027f9581f84461ca87abba8c6.tar.bz2 rails-70fd692c1eada44027f9581f84461ca87abba8c6.zip |
Use the right format when a partial is missing.
Closes #5025
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/render_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/template/render_test.rb b/actionpack/test/template/render_test.rb index 788ad61356..e4ce756bf8 100644 --- a/actionpack/test/template/render_test.rb +++ b/actionpack/test/template/render_test.rb @@ -51,6 +51,13 @@ module RenderTestCases assert_match "<error>No Comment</error>", @view.render(:template => "comments/empty", :formats => [:xml]) end + def test_render_template_with_a_missing_partial_of_another_format + assert_raise ActionView::Template::Error, "Missing partial /missing with {:locale=>[:en], :formats=>[:json], :handlers=>[:erb, :builder]}" do + @view.lookup_context.freeze_formats([:html]) + @view.render(:template => "with_format", :formats => [:json]) + end + end + def test_render_file_with_locale assert_equal "<h1>Kein Kommentar</h1>", @view.render(:file => "comments/empty", :locale => [:de]) assert_equal "<h1>Kein Kommentar</h1>", @view.render(:file => "comments/empty", :locale => :de) |