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

project_export_jobs.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf8cfd863ec0771e5eadf2c1ddea7eac205647c2 (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
# frozen_string_literal: true

FactoryBot.define do
  factory :project_export_job do
    project
    jid { SecureRandom.hex(8) }

    trait :queued do
      status { ProjectExportJob::STATUS[:queued] }
    end

    trait :started do
      status { ProjectExportJob::STATUS[:started] }
    end

    trait :finished do
      status { ProjectExportJob::STATUS[:finished] }
    end

    trait :failed do
      status { ProjectExportJob::STATUS[:failed] }
    end
  end
end