93a44e135b
Adds frozen string to the following: * spec/bin/**/*.rb * spec/config/**/*.rb * spec/controllers/**/*.rb xref https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
17 lines
306 B
Ruby
17 lines
306 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Admin::GitalyServersController do
|
|
describe '#index' do
|
|
before do
|
|
sign_in(create(:admin))
|
|
end
|
|
|
|
it 'shows the gitaly servers page' do
|
|
get :index
|
|
|
|
expect(response).to have_gitlab_http_status(200)
|
|
end
|
|
end
|
|
end
|