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

test_case.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 601a3fae9700c6f7dd769c30565dad22dc7c9951 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_test_case, class: 'Ci::TestCase' do
    project
    key_hash { Digest::SHA256.hexdigest(SecureRandom.hex) }
  end
end