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: 3e351af612148059e1585455c928b8b04d199c35 (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)
    enable_admin_mode!(admin)
  end

  include_examples 'manage applications'
end