94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
11 lines
252 B
Ruby
11 lines
252 B
Ruby
# 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
|