10 lines
206 B
Ruby
10 lines
206 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :ci_pipeline_message, class: 'Ci::PipelineMessage' do
|
||
|
pipeline factory: :ci_pipeline
|
||
|
content { 'warning' }
|
||
|
severity { 1 }
|
||
|
end
|
||
|
end
|