2020-03-12 14:09:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
2021-03-19 08:09:03 -04:00
|
|
|
factory :ci_unit_test, class: 'Ci::UnitTest' do
|
2020-10-23 14:08:31 -04:00
|
|
|
project
|
2021-03-19 08:09:03 -04:00
|
|
|
suite_name { 'rspec' }
|
|
|
|
name { 'Math#add returns sum' }
|
2020-10-23 14:08:31 -04:00
|
|
|
key_hash { Digest::SHA256.hexdigest(SecureRandom.hex) }
|
2020-03-12 14:09:28 -04:00
|
|
|
end
|
|
|
|
end
|