Files
national-parks-api/test/controllers/api/v1/parks_controller_test.rb
2025-10-07 22:09:41 -07:00

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