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

admin_manage_applications_spec.rb « admin « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4c77e802a843b7b0fb0c2f20cc143caa4ff1f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'admin manage applications', feature_category: :system_access do
  let_it_be(:new_application_path) { new_admin_application_path }
  let_it_be(:applications_path) { admin_applications_path }
  let_it_be(:index_path) { admin_applications_path }

  before do
    admin = create(:admin)
    sign_in(admin)
    gitlab_enable_admin_mode_sign_in(admin)
  end

  include_examples 'manage applications'
end