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

experiment_subjects.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c35bc370bad35801426720b1169b9b054ff97a1d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :experiment_subject do
    experiment
    user
    variant { :control }
  end
end