mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-10 01:31:45 +00:00
18 lines
454 B
Ruby
18 lines
454 B
Ruby
# 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
|