dawarich/spec/swagger/api/v1/health_controller_spec.rb
2024-09-05 21:16:40 +02:00

15 lines
306 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', 'areas found' do
run_test!
end
end
end
end