mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
15 lines
302 B
Ruby
15 lines
302 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'swagger_helper'
|
|
|
|
describe 'Health API', type: :request do
|
|
path '/api/v1/health' do
|
|
get 'Retrieves application status' do
|
|
tags 'Health'
|
|
produces 'application/json'
|
|
response '200', 'Healthy' do
|
|
run_test!
|
|
end
|
|
end
|
|
end
|
|
end
|