2022-11-25 23:54:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :ci_pipeline_metadata, class: 'Ci::PipelineMetadata' do
|
2023-01-13 00:05:48 +05:30
|
|
|
name { 'Pipeline name' }
|
2022-11-25 23:54:43 +05:30
|
|
|
|
|
|
|
pipeline factory: :ci_empty_pipeline
|
|
|
|
project
|
|
|
|
end
|
|
|
|
end
|