require "test_helper" class CitiesControllerTest < ActionDispatch::IntegrationTest test "should get index" do get cities_index_url assert_response :success end test "should get show" do get cities_show_url assert_response :success end end