debian-mirror-gitlab/spec/factories/draft_note.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.1 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :draft_note do
note { generate(:title) }
association :author, factory: :user
association :merge_request, factory: :merge_request
factory :draft_note_on_text_diff do
transient do
line_number { 14 }
diff_refs { merge_request.try(:diff_refs) }
2021-04-29 21:17:54 +05:30
path { "files/ruby/popen.rb" }
2020-06-23 00:09:42 +05:30
end
position do
Gitlab::Diff::Position.new(
2021-04-29 21:17:54 +05:30
old_path: path,
new_path: path,
2020-06-23 00:09:42 +05:30
old_line: nil,
new_line: line_number,
diff_refs: diff_refs
)
end
2021-04-29 21:17:54 +05:30
factory :draft_note_on_image_diff do
transient do
path { "files/images/any_image.png" }
end
position do
association(:image_diff_position,
file: path,
diff_refs: diff_refs)
end
end
2020-06-23 00:09:42 +05:30
end
factory :draft_note_on_discussion, traits: [:on_discussion]
trait :on_discussion do
2020-11-24 15:15:51 +05:30
discussion_id { association(:discussion_note_on_merge_request, noteable: merge_request, project: project).discussion_id }
2020-06-23 00:09:42 +05:30
end
end
end