- Standardize string quotes in various files for consistency. - Remove commented-out tests from cities and weather_arts controllers to improve readability. - Clean up admin_users and weather_arts fixture files by commenting out unused entries instead of removing them. These changes are aimed at enhancing code readability and maintainability, ensuring that code adheres to style guidelines without removing useful comments for future reference.
14 lines
277 B
Ruby
14 lines
277 B
Ruby
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
|