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

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