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

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

FactoryBot.define do
  factory :ci_build_need, class: Ci::BuildNeed do
    build factory: :ci_build
    sequence(:name) { |n| "build_#{n}" }
  end
end