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

runner_projects.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec15972c423d347142fc05740084247630014eaf (plain)
1
2
3
4
5
6
FactoryBot.define do
  factory :ci_runner_project, class: Ci::RunnerProject do
    runner factory: [:ci_runner, :project]
    project
  end
end