Methods
R
Instance Public methods
render_with_record_collection_in_nested_controller()
# File actionview/test/activerecord/render_partial_with_record_identification_test.rb, line 104
def render_with_record_collection_in_nested_controller
  render :partial => [ Game.new("Pong"), Game.new("Tank") ]
end
render_with_record_in_nested_controller()
# File actionview/test/activerecord/render_partial_with_record_identification_test.rb, line 100
def render_with_record_in_nested_controller
  render :partial => Game.new("Pong")
end