14 lines
265 B
Ruby
14 lines
265 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
|