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

group_group_links.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0711a15b8dd53219825c1078749c615ec7aa05b9 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :group_group_link do
    shared_group { create(:group) }
    shared_with_group { create(:group) }
    group_access { GroupMember::DEVELOPER }
  end
end