debian-mirror-gitlab/spec/factories/work_items.rb
2022-04-04 11:22:00 +05:30

14 lines
344 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
end
end