summaryrefslogtreecommitdiff
path: root/spec/factories/chat_teams.rb
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