mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
14 lines
283 B
Ruby
14 lines
283 B
Ruby
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
|