debian-mirror-gitlab/spec/factories/work_items.rb
2023-03-04 22:38:38 +05:30

41 lines
970 B
Ruby

# 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
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
end
end