24 lines
452 B
Ruby
24 lines
452 B
Ruby
require 'swagger_helper'
|
|
|
|
describe 'Navigation', type: :request do
|
|
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
|