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

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

FactoryBot.define do
  factory :users_statistics do
    without_groups_and_projects { 23 }
    with_highest_role_guest { 5 }
    with_highest_role_reporter { 9 }
    with_highest_role_developer { 21 }
    with_highest_role_maintainer { 6 }
    with_highest_role_owner { 5 }
    bots { 2 }
    blocked { 7 }
  end
end