debian-mirror-gitlab/spec/factories/ci/pipeline_metadata.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
213 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# 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