2023-05-12 11:11:48 +02:00
|
|
|
require 'swagger_helper'
|
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
describe Api::V1::NavigationsController do
|
2023-05-12 11:11:48 +02:00
|
|
|
include ApiHelper
|
|
|
|
|
|
|
|
path '/navigation' do
|
|
|
|
get 'navigation' do
|
|
|
|
tags 'General'
|
|
|
|
produces 'application/json'
|
|
|
|
|
|
|
|
response '200', 'success' do
|
|
|
|
schema type: :object, properties: {
|
|
|
|
navigation: {
|
|
|
|
'$ref' => '#/components/schemas/Navigation'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run_test!
|
|
|
|
end
|
|
|
|
|
|
|
|
it_handles_invalid_token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|