You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
264 B
14 lines
264 B
5 years ago
|
require 'rails_helper'
|
||
|
|
||
4 years ago
|
describe HealthController do
|
||
5 years ago
|
render_views
|
||
|
|
||
|
describe 'GET #show' do
|
||
4 years ago
|
subject(:response) { get :show, params: { format: :json } }
|
||
5 years ago
|
|
||
|
it 'returns the right response' do
|
||
|
expect(response).to have_http_status 200
|
||
|
end
|
||
|
end
|
||
|
end
|