diff options
Diffstat (limited to 'spec/factories/group_group_links.rb')
-rw-r--r-- | spec/factories/group_group_links.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/factories/group_group_links.rb b/spec/factories/group_group_links.rb new file mode 100644 index 00000000000..0711a15b8dd --- /dev/null +++ b/spec/factories/group_group_links.rb @@ -0,0 +1,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 |