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

manage_applications_spec.rb « settings « groups « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7b87cda5060182e07e9694b8f445d5fdc30abd2 (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 'User manages applications', feature_category: :subgroups do
  let_it_be(:group) { create(:group) }
  let_it_be(:user) { create(:user) }
  let_it_be(:new_application_path) { group_settings_applications_path(group) }
  let_it_be(:index_path) { group_settings_applications_path(group) }

  before do
    group.add_owner(user)
    sign_in(user)
  end

  include_examples 'manage applications'
end