Source: show | on GitHub
# File actionview/lib/action_view/test_case.rb, line 303 def initialize @rendered_views ||= Hash.new { |hash, key| hash[key] = [] } end
# File actionview/lib/action_view/test_case.rb, line 307 def add(view, locals) @rendered_views[view] ||= [] @rendered_views[view] << locals end
# File actionview/lib/action_view/test_case.rb, line 312 def locals_for(view) @rendered_views[view] end
# File actionview/lib/action_view/test_case.rb, line 316 def rendered_views @rendered_views.keys end
# File actionview/lib/action_view/test_case.rb, line 320 def view_rendered?(view, expected_locals) locals_for(view).any? do |actual_locals| expected_locals.all? { |key, value| value == actual_locals[key] } end end