94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
40 lines
710 B
Ruby
40 lines
710 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :issue do
|
|
title { generate(:title) }
|
|
project
|
|
author { project.creator }
|
|
updated_by { author }
|
|
|
|
trait :confidential do
|
|
confidential true
|
|
end
|
|
|
|
trait :opened do
|
|
state :opened
|
|
end
|
|
|
|
trait :locked do
|
|
discussion_locked true
|
|
end
|
|
|
|
trait :closed do
|
|
state :closed
|
|
closed_at { Time.now }
|
|
end
|
|
|
|
factory :closed_issue, traits: [:closed]
|
|
factory :reopened_issue, traits: [:opened]
|
|
|
|
factory :labeled_issue do
|
|
transient do
|
|
labels []
|
|
end
|
|
|
|
after(:create) do |issue, evaluator|
|
|
issue.update(labels: evaluator.labels)
|
|
end
|
|
end
|
|
end
|
|
end
|