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: f413555d980f4e71798367a1d15c64468ad2467c (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :chat_team, class: 'ChatTeam' do
    sequence(:team_id) { |n| "abcdefghijklm#{n}" }
    namespace factory: :group
  end
end