gitlab-org--gitlab-foss/spec/controllers/admin/health_check_controller_spec.rb
gfyoung 93a44e135b Add some frozen string to spec/**/*.rb
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
2019-04-15 10:17:05 +00:00

19 lines
313 B
Ruby

# frozen_string_literal: true
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