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

candidates.rb « ml « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5644ee3841b4d926f5faa4e961a1eee1c962e84 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true
FactoryBot.define do
  factory :ml_candidates, class: '::Ml::Candidate' do
    association :experiment, factory: :ml_experiments
    association :user
  end
end