debian-mirror-gitlab/spec/factories/work_items.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
970 B
Ruby
Raw Normal View History

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
2023-03-04 22:38:38 +05:30
trait :objective do
issue_type { :objective }
association :work_item_type, :default, :objective
end
trait :key_result do
issue_type { :key_result }
association :work_item_type, :default, :key_result
end
2022-04-04 11:22:00 +05:30
end
end