2019-08-01 10:26:49 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
2020-01-09 13:07:52 -05:00
|
|
|
factory :ci_build_need, class: 'Ci::BuildNeed' do
|
2020-02-14 07:09:03 -05:00
|
|
|
build factory: :ci_build, scheduling_type: :dag
|
2019-08-01 10:26:49 -04:00
|
|
|
sequence(:name) { |n| "build_#{n}" }
|
|
|
|
end
|
|
|
|
end
|