summaryrefslogtreecommitdiff
path: root/spec/models
diff options
context:
space:
mode:
authorFelipe Artur <felipefac@gmail.com>2017-11-13 16:38:15 -0200
committerFelipe Artur <felipefac@gmail.com>2017-11-13 16:40:54 -0200
commitaefefbf11701042ae59a60818e3f957b30831dfd (patch)
tree8d8bd3d7a63ba2767b3e37dcb9bc00af80552d92 /spec/models
parent9200b500125d15a56d10e66c9bcd78943e4386b1 (diff)
downloadgitlab-ce-issue_40058.tar.gz
Prevents position update for image diff notesissue_40058
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/diff_note_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/models/diff_note_spec.rb b/spec/models/diff_note_spec.rb
index da972d2d86a..8389d5c5430 100644
--- a/spec/models/diff_note_spec.rb
+++ b/spec/models/diff_note_spec.rb
@@ -283,6 +283,12 @@ describe DiffNote do
expect(diff_line).to be nil
expect(subject).to be_valid
end
+
+ it "does not update the position" do
+ expect(subject).not_to receive(:update_position)
+
+ subject.save
+ end
end
it "returns true for on_image?" do