about summary refs log tree commit diff
path: root/spec/controllers/health_check_controller_spec.rb
blob: c00600c9b329fe913b4340705d6d085802a5c018 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rails_helper'

describe HealthCheck::HealthCheckController do
  render_views

  describe 'GET #show' do
    subject(:response) { get :index, params: { format: :json } }

    it 'returns the right response' do
      expect(response).to have_http_status 200
    end
  end
end