summaryrefslogtreecommitdiff
path: root/spec/factories/x509_commit_signature.rb
blob: a342b2406901e3453e1929bc6ce67b35665ae67b (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :x509_commit_signature do
    commit_sha { Digest::SHA1.hexdigest(SecureRandom.hex) }
    project
    x509_certificate
    verification_status { :verified }
  end
end