debian-mirror-gitlab/spec/factories/lists.rb
2020-04-22 19:07:51 +05:30

26 lines
456 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :list do
board
label
list_type { :label }
max_issue_count { 0 }
max_issue_weight { 0 }
limit_metric { nil }
sequence(:position)
end
factory :backlog_list, parent: :list do
list_type { :backlog }
label { nil }
position { nil }
end
factory :closed_list, parent: :list do
list_type { :closed }
label { nil }
position { nil }
end
end