summaryrefslogtreecommitdiff
path: root/spec/factories/gpg_signature.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-20 13:37:47 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-20 13:37:47 +0000
commitaee0a117a889461ce8ced6fcf73207fe017f1d99 (patch)
tree891d9ef189227a8445d83f35c1b0fc99573f4380 /spec/factories/gpg_signature.rb
parent8d46af3258650d305f53b819eabf7ab18d22f59e (diff)
downloadgitlab-ce-aee0a117a889461ce8ced6fcf73207fe017f1d99.tar.gz
Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42
Diffstat (limited to 'spec/factories/gpg_signature.rb')
-rw-r--r--spec/factories/gpg_signature.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/factories/gpg_signature.rb b/spec/factories/gpg_signature.rb
deleted file mode 100644
index 2ab4d190276..00000000000
--- a/spec/factories/gpg_signature.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-# frozen_string_literal: true
-
-FactoryBot.define do
- factory :gpg_signature do
- commit_sha { Digest::SHA1.hexdigest(SecureRandom.hex) }
- project
- gpg_key
- gpg_key_primary_keyid { gpg_key.keyid }
- verification_status { :verified }
- end
-end