Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_message.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71fac24922dd5e8751ec4019eb6d3f43a6847108 (plain)
1
2
3
4
5
6
7
8
9
# 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