10 lines
171 B
Ruby
Executable File
10 lines
171 B
Ruby
Executable File
require 'test_helper'
|
|
|
|
class Public::CitiesControllerTest < ActionController::TestCase
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
end
|
|
|
|
end
|