debian-mirror-gitlab/spec/factories/gpg_signature.rb

10 lines
221 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
FactoryBot.define do
2017-09-10 17:25:29 +05:30
factory :gpg_signature do
commit_sha { Digest::SHA1.hexdigest(SecureRandom.hex) }
project
gpg_key
2018-03-17 18:26:18 +05:30
gpg_key_primary_keyid { gpg_key.keyid }
verification_status :verified
2017-09-10 17:25:29 +05:30
end
end