debian-mirror-gitlab/spec/features/groups/settings/manage_applications_spec.rb
2023-03-05 14:24:40 +05:30

17 lines
463 B
Ruby

# 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