30b4ce940d
Was introduced in the time that GitLab still used NFS, which is not required anymore in most cases. By removing this, the API it calls will return empty responses. This interface has to be removed in the next major release, expected to be 12.0.
17 lines
282 B
Ruby
17 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
|