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

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

FactoryBot.define do
  factory :operations_feature_flag_user_list, class: 'Operations::FeatureFlags::UserList' do
    association :project, factory: :project
    name { 'My User List' }
    user_xids { 'user1,user2,user3' }
  end
end