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

FactoryBot.define do
  factory :ci_unit_test, class: 'Ci::UnitTest' do
    project
    suite_name { 'rspec' }
    name { 'Math#add returns sum' }
    key_hash { Digest::SHA256.hexdigest(SecureRandom.hex) }
  end
end