9 lines
185 B
Ruby
9 lines
185 B
Ruby
require "test_helper"
|
|
|
|
class Api::V1::ParksControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get api_v1_parks_url
|
|
assert_response :success
|
|
end
|
|
end
|