summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/git/diff_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-01-25 21:09:03 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-01-25 21:09:03 +0000
commitfba5aaeec6f0e95818092f7b27b1529df1c13b63 (patch)
treec0e9f33e1b9cabccd12f57ad2da427af1a31d1c4 /spec/lib/gitlab/git/diff_spec.rb
parent899bb5c4a9e249e2051bb564eeb17d1456b5ae8d (diff)
downloadgitlab-ce-fba5aaeec6f0e95818092f7b27b1529df1c13b63.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/gitlab/git/diff_spec.rb')
-rw-r--r--spec/lib/gitlab/git/diff_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/lib/gitlab/git/diff_spec.rb b/spec/lib/gitlab/git/diff_spec.rb
index 783f0a9ccf7..17bb83d0f2f 100644
--- a/spec/lib/gitlab/git/diff_spec.rb
+++ b/spec/lib/gitlab/git/diff_spec.rb
@@ -100,6 +100,13 @@ EOT
expect(diff.diff).to be_empty
expect(diff).to be_too_large
end
+
+ it 'logs the event' do
+ expect(Gitlab::Metrics).to receive(:add_event)
+ .with(:patch_hard_limit_bytes_hit)
+
+ diff
+ end
end
context 'using a collapsable diff that is too large' do