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

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

FactoryBot.define do
  factory :project_group_link do
    project
    group
    expires_at { nil }
  end
end