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

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

FactoryBot.define do
  factory :work_item, traits: [:has_internal_id] do
    title { generate(:title) }
    project
    author { project.creator }
    updated_by { author }
    relative_position { RelativePositioning::START_POSITION }
    issue_type { :issue }
    association :work_item_type, :default

    trait :confidential do
      confidential { true }
    end

    trait :task do
      issue_type { :task }
      association :work_item_type, :default, :task
    end

    trait :incident do
      issue_type { :incident }
      association :work_item_type, :default, :incident
    end

    trait :last_edited_by_user do
      association :last_edited_by, factory: :user
    end
  end
end