class RenderPartialWithRecordIdentificationAndNestedDeeperControllersTest

Public Instance Methods

test_render_with_record_collection_in_deeper_nested_controller() click to toggle source
# File actionview/test/activerecord/render_partial_with_record_identification_test.rb, line 170
def test_render_with_record_collection_in_deeper_nested_controller
  get :render_with_record_collection_in_deeper_nested_controller
  assert_equal "Serious Chess\nSerious Sudoku\nSerious Solitaire\n", @response.body
end
test_render_with_record_in_deeper_nested_controller() click to toggle source
# File actionview/test/activerecord/render_partial_with_record_identification_test.rb, line 165
def test_render_with_record_in_deeper_nested_controller
  get :render_with_record_in_deeper_nested_controller
  assert_equal "Serious Chess\n", @response.body
end