1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-16 23:53:52 -05:00

15 lines
241 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
describe HealthController do
render_views
describe 'GET #show' do
it 'returns http success' do
get :show
expect(response).to have_http_status(200)
end
end
end