Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unit_test.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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