diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-11-17 11:50:09 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-11-17 11:50:09 -0200 |
commit | 549577193875e151b9afab28bf32e86e879a53a6 (patch) | |
tree | fb01fe5ed7a133120eed082bf186d03345d718e6 /actionpack/test/dispatch | |
parent | 8fd5592beefc07935443f01e6c8cda47d0c8d24c (diff) | |
parent | c3e8d15e8babd8c27aa04ced8cde40fdc124416a (diff) | |
download | rails-549577193875e151b9afab28bf32e86e879a53a6.tar.gz rails-549577193875e151b9afab28bf32e86e879a53a6.tar.bz2 rails-549577193875e151b9afab28bf32e86e879a53a6.zip |
Merge pull request #17642 from tgxworld/fix_template_assertion_on_assigns
Fix for assigns(:..) resetting template assertions
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/template_assertions_test.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/template_assertions_test.rb b/actionpack/test/dispatch/template_assertions_test.rb index 3c393f937b..7278754b49 100644 --- a/actionpack/test/dispatch/template_assertions_test.rb +++ b/actionpack/test/dispatch/template_assertions_test.rb @@ -10,7 +10,7 @@ class AssertTemplateController < ActionController::Base end def render_with_layout - @variable_for_layout = nil + @variable_for_layout = 'hello' render 'test/hello_world', layout: "layouts/standard" end @@ -95,4 +95,16 @@ class AssertTemplateControllerTest < ActionDispatch::IntegrationTest session.assert_template file: nil end end + + def test_assigns_do_not_reset_template_assertion + get '/assert_template/render_with_layout' + assert_equal 'hello', assigns(:variable_for_layout) + assert_template layout: 'layouts/standard' + end + + def test_cookies_do_not_reset_template_assertion + get '/assert_template/render_with_layout' + cookies + assert_template layout: 'layouts/standard' + end end |