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

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

FactoryBot.define do
  factory :ci_job_token_project_scope_link, class: 'Ci::JobToken::ProjectScopeLink' do
    association :source_project, factory: :project
    association :target_project, factory: :project
    association :added_by, factory: :user
  end
end