1# frozen_string_literal: true
2
3FactoryBot.define do
4  factory :users_statistics do
5    without_groups_and_projects { 23 }
6    with_highest_role_guest { 5 }
7    with_highest_role_reporter { 9 }
8    with_highest_role_developer { 21 }
9    with_highest_role_maintainer { 6 }
10    with_highest_role_owner { 5 }
11    bots { 2 }
12    blocked { 7 }
13  end
14end
15