11 lines
213 B
Ruby
11 lines
213 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :ci_pipeline_metadata, class: 'Ci::PipelineMetadata' do
|
||
|
title { 'Pipeline title' }
|
||
|
|
||
|
pipeline factory: :ci_empty_pipeline
|
||
|
project
|
||
|
end
|
||
|
end
|