mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-15 21:39:00 +00:00
9 lines
186 B
Ruby
9 lines
186 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :chat_team, class: 'ChatTeam' do
|
|
sequence(:team_id) { |n| "abcdefghijklm#{n}" }
|
|
namespace factory: :group
|
|
end
|
|
end
|