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: 9bfb78066bde9e84307b9591b600a90092a3f4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true
FactoryBot.define do
  factory :ml_candidates, class: '::Ml::Candidate' do
    association :project, factory: :project
    association :user

    experiment { association :ml_experiments, project_id: project.id }

    trait :with_metrics_and_params do
      metrics { Array.new(2) { association(:ml_candidate_metrics, candidate: instance) } }
      params { Array.new(2) { association(:ml_candidate_params, candidate: instance) } }
    end

    trait :with_metadata do
      metadata { Array.new(2) { association(:ml_candidate_metadata, candidate: instance) } }
    end

    trait :with_artifact do
      after(:create) do |candidate|
        candidate.package = FactoryBot.create(
          :generic_package,
          name: candidate.package_name,
          version: candidate.package_version,
          project: candidate.project
        )
      end
    end
  end
end