10 lines
247 B
Ruby
10 lines
247 B
Ruby
# 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
|