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

chat_names.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07bf990162f6599195ac55368f139210c98a46df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

FactoryBot.define do
  factory :chat_name, class: ChatName do
    user factory: :user
    service factory: :service

    team_id 'T0001'
    team_domain 'Awesome Team'

    sequence(:chat_id) { |n| "U#{n}" }
    chat_name { generate(:username) }
  end
end