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

chat_teams.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d048c46d6b6ac74b31467e1f98438bc4ad33984d (plain)
1
2
3
4
5
6
FactoryBot.define do
  factory :chat_team, class: ChatTeam do
    sequence(:team_id) { |n| "abcdefghijklm#{n}" }
    namespace factory: :group
  end
end