add navigation_spec

This commit is contained in:
Philipp Rothmann 2022-11-21 15:54:47 +01:00
parent e8303a8b14
commit 71ae7051bc
2 changed files with 47 additions and 1 deletions

View file

@ -0,0 +1,25 @@
require 'swagger_helper'
describe 'Navigation API', type: :request do
include ApiHelper
path '/navigation' do
get 'navigation' do
tags 'General'
produces 'application/json'
let(:api_scopes) { ['config:user'] }
response '200', 'success' do
schema type: :object, properties: {
navigation: {
'$ref' => '#/components/schemas/Navigation'
}
}
run_test!
end
it_handles_invalid_token
end
end
end