summaryrefslogtreecommitdiff
path: root/spec/factories/ci/test_case.rb
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