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

stages.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9dff4d9a86156d8c6493f9e650bbae7b019ca1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_stage, class: 'Ci::Stage' do
    project { pipeline.project }
    pipeline factory: :ci_empty_pipeline

    name { 'test' }
    position { 1 }
    status { 'pending' }
  end
end