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

experiments.rb « ml « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 043ca712e60886997d9e1dd32387a1facc4bca0b (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
FactoryBot.define do
  factory :ml_experiments, class: '::Ml::Experiment' do
    sequence(:name) { |n| "experiment#{n}" }
    association :project
    association :user
  end
end