debian-mirror-gitlab/spec/controllers/admin/health_check_controller_spec.rb
2018-12-13 13:39:08 +05:30

18 lines
282 B
Ruby

require 'spec_helper'
describe Admin::HealthCheckController do
let(:admin) { create(:admin) }
before do
sign_in(admin)
end
describe 'GET show' do
it 'loads the health information' do
get :show
expect(assigns[:errors]).not_to be_nil
end
end
end