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: b6437fce540662f526b1f085c93187c5a82c0b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'admin manage applications' do
  let_it_be(:new_application_path) { new_admin_application_path }
  let_it_be(:applications_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