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: 4751c04584e736d287072d212f86e1ff34ac1d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_stage, class: 'Ci::LegacyStage' do
    skip_create

    transient do
      name { 'test' }
      status { nil }
      warnings { nil }
      pipeline factory: :ci_empty_pipeline
    end

    initialize_with do
      Ci::LegacyStage.new(pipeline, name: name,
        status: status,
        warnings: warnings)
    end
  end

  factory :ci_stage_entity, class: 'Ci::Stage' do
    project factory: :project
    pipeline factory: :ci_empty_pipeline

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