debian-mirror-gitlab/spec/factories/ml/candidate_metrics.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
280 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :ml_candidate_metrics, class: '::Ml::CandidateMetric' do
association :candidate, factory: :ml_candidates
sequence(:name) { |n| "metric#{n}" }
value { 2.0 }
step { 1 }
tracked_at { 1234 }
end
end