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