diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-04-06 11:17:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-06 11:17:52 +0200 |
commit | df326b8b5c0659edb2aca77690a892f228b0e099 (patch) | |
tree | 0d6b014047fa80270377b83e313aa882923c9429 /spec/controllers/health_controller_spec.rb | |
parent | 39b9a0619ab4ba68ed429152153cf0dbbfcd5a5a (diff) | |
parent | 5c225b03db280c94dc3519dc5bad2cac86487e9b (diff) |
Merge pull request #1519 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'spec/controllers/health_controller_spec.rb')
-rw-r--r-- | spec/controllers/health_controller_spec.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/controllers/health_controller_spec.rb b/spec/controllers/health_controller_spec.rb new file mode 100644 index 000000000..1e41f6ed7 --- /dev/null +++ b/spec/controllers/health_controller_spec.rb @@ -0,0 +1,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 |