This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
require 'rails_helper'
|
|
|
|
describe HealthController do
|
|
render_views
|
|
|
|
describe 'GET #show' do
|
|
subject(:response) { get :show, params: { format: :json } }
|
|
|
|
it 'returns the right response' do
|
|
expect(response).to have_http_status 200
|
|
end
|
|
end
|
|
end
|