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: 2daed36d777aec760c405043dffc75a231c687b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
FactoryBot.define do
  factory :ml_candidates, class: '::Ml::Candidate' do
    association :experiment, factory: :ml_experiments
    association :user

    trait :with_metrics_and_params do
      after(:create) do |candidate|
        candidate.metrics = FactoryBot.create_list(:ml_candidate_metrics, 2, candidate: candidate )
        candidate.params = FactoryBot.create_list(:ml_candidate_params, 2, candidate: candidate )
      end
    end

    trait :with_metadata do
      after(:create) do |candidate|
        candidate.metadata = FactoryBot.create_list(:ml_candidate_metadata, 2, candidate: candidate )
      end
    end
  end
end