2022-04-04 11:22:00 +05:30
|
|
|
# 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
|
2022-07-23 23:45:48 +05:30
|
|
|
|
2022-08-27 11:52:29 +05:30
|
|
|
trait :confidential do
|
|
|
|
confidential { true }
|
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
trait :task do
|
|
|
|
issue_type { :task }
|
|
|
|
association :work_item_type, :default, :task
|
|
|
|
end
|
2022-08-13 15:12:31 +05:30
|
|
|
|
|
|
|
trait :incident do
|
|
|
|
issue_type { :incident }
|
|
|
|
association :work_item_type, :default, :incident
|
|
|
|
end
|
2022-10-11 01:57:18 +05:30
|
|
|
|
|
|
|
trait :last_edited_by_user do
|
|
|
|
association :last_edited_by, factory: :user
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
end
|
|
|
|
end
|