Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/profiles_controller_spec.rb')
-rw-r--r--spec/controllers/profiles_controller_spec.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/spec/controllers/profiles_controller_spec.rb b/spec/controllers/profiles_controller_spec.rb
index 4f350ddf1ef..26144edb670 100644
--- a/spec/controllers/profiles_controller_spec.rb
+++ b/spec/controllers/profiles_controller_spec.rb
@@ -140,30 +140,6 @@ RSpec.describe ProfilesController, :request_store do
end
end
- describe 'GET audit_log' do
- let(:auth_event) { create(:authentication_event, user: user) }
-
- it 'tracks search event', :snowplow do
- sign_in(user)
-
- get :audit_log
-
- expect_snowplow_event(
- category: 'ProfilesController',
- action: 'search_audit_event',
- user: user
- )
- end
-
- it 'loads page correctly' do
- sign_in(user)
-
- get :audit_log
-
- expect(response).to have_gitlab_http_status(:success)
- end
- end
-
describe 'PUT update_username' do
let(:namespace) { user.namespace }
let(:gitlab_shell) { Gitlab::Shell.new }