about summary refs log tree commit diff
path: root/spec/controllers/health_controller_spec.rb
blob: 1e41f6ed74511eabec6c00ab01cd7d03d6bbeed8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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