diff options
author | Matthew Draper <matthew@trebex.net> | 2014-07-25 17:14:53 +0930 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2014-07-25 17:14:53 +0930 |
commit | 75eddfbca98bb17ae7569ec30a3094ae1c50cdd3 (patch) | |
tree | 876622201b76437f3e364227772c486c0096be38 /actionpack/lib | |
parent | 3f4e97f807eb475ac8c311e5baf138249a8a1ab2 (diff) | |
parent | e6f2d4f68577643b15883b94ead417f75967d2d6 (diff) | |
download | rails-75eddfbca98bb17ae7569ec30a3094ae1c50cdd3.tar.gz rails-75eddfbca98bb17ae7569ec30a3094ae1c50cdd3.tar.bz2 rails-75eddfbca98bb17ae7569ec30a3094ae1c50cdd3.zip |
Merge pull request #16272 from tgxworld/fix_template_assertion_when_opening_a_session
Fix template assertion when opening a session.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 657924a16c..71cb224f22 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -12,8 +12,13 @@ module ActionController teardown :teardown_subscriptions end + RENDER_TEMPLATE_INSTANCE_VARIABLES = %w{partials templates layouts files}.freeze + def setup_subscriptions - reset_template_assertion + RENDER_TEMPLATE_INSTANCE_VARIABLES.each do |instance_variable| + instance_variable_set("@_#{instance_variable}", Hash.new(0)) + end + @_subscribers = [] @_subscribers << ActiveSupport::Notifications.subscribe("render_template.action_view") do |_name, _start, _finish, _id, payload| @@ -58,10 +63,9 @@ module ActionController end def reset_template_assertion - @_partials = Hash.new(0) - @_templates = Hash.new(0) - @_layouts = Hash.new(0) - @_files = Hash.new(0) + RENDER_TEMPLATE_INSTANCE_VARIABLES.each do |instance_variable| + instance_variable_get("@_#{instance_variable}").clear + end end # Asserts that the request was rendered with the appropriate template file or partials. |