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: ace5d5e83c98288e6f4557ae0ec5d9d78e5d62d7 (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