dawarich/spec/swagger/api/v1/health_controller_spec.rb

16 lines
302 B
Ruby
Raw Normal View History

2024-09-05 15:16:40 -04:00
# 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'
2024-09-05 15:18:05 -04:00
response '200', 'Healthy' do
2024-09-05 15:16:40 -04:00
run_test!
end
end
end
end