94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
57 lines
1 KiB
Ruby
57 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :todo do
|
|
project
|
|
author { project&.creator || user }
|
|
user { project&.creator || user }
|
|
target factory: :issue
|
|
action { Todo::ASSIGNED }
|
|
|
|
trait :assigned do
|
|
action { Todo::ASSIGNED }
|
|
end
|
|
|
|
trait :mentioned do
|
|
action { Todo::MENTIONED }
|
|
end
|
|
|
|
trait :directly_addressed do
|
|
action { Todo::DIRECTLY_ADDRESSED }
|
|
end
|
|
|
|
trait :build_failed do
|
|
action { Todo::BUILD_FAILED }
|
|
target factory: :merge_request
|
|
end
|
|
|
|
trait :marked do
|
|
action { Todo::MARKED }
|
|
end
|
|
|
|
trait :approval_required do
|
|
action { Todo::APPROVAL_REQUIRED }
|
|
end
|
|
|
|
trait :unmergeable do
|
|
action { Todo::UNMERGEABLE }
|
|
end
|
|
|
|
trait :pending do
|
|
state :pending
|
|
end
|
|
|
|
trait :done do
|
|
state :done
|
|
end
|
|
end
|
|
|
|
factory :on_commit_todo, class: Todo do
|
|
project
|
|
author
|
|
user
|
|
action { Todo::ASSIGNED }
|
|
commit_id { RepoHelpers.sample_commit.id }
|
|
target_type "Commit"
|
|
end
|
|
end
|