summaryrefslogtreecommitdiff
path: root/spec/factories
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2018-12-20 15:22:58 +0100
committerDouwe Maan <douwe@selenight.nl>2018-12-20 15:22:58 +0100
commitf6dd6e566a2c656f97cf7c78df482bd4ec77d006 (patch)
treefaabdccc290136b54d53a62799908288e3ebe0b3 /spec/factories
parentf7ac8041f7ba3639085c26b4185eda00fd54a6e7 (diff)
downloadgitlab-ce-f6dd6e566a2c656f97cf7c78df482bd4ec77d006.tar.gz
Add image_diff_note_on_merge_request factory
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/notes.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/factories/notes.rb b/spec/factories/notes.rb
index 2d1f48bf249..c51f2f958f9 100644
--- a/spec/factories/notes.rb
+++ b/spec/factories/notes.rb
@@ -64,6 +64,21 @@ FactoryBot.define do
resolved_at { Time.now }
resolved_by { create(:user) }
end
+
+ factory :image_diff_note_on_merge_request do
+ position do
+ Gitlab::Diff::Position.new(
+ old_path: "files/images/any_image.png",
+ new_path: "files/images/any_image.png",
+ width: 10,
+ height: 10,
+ x: 1,
+ y: 1,
+ diff_refs: diff_refs,
+ position_type: "image"
+ )
+ end
+ end
end
factory :diff_note_on_commit, traits: [:on_commit], class: DiffNote do