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

alerts_service_data.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2dd1d0a714ef5b207a06cafe5a6388d8ee4d596d (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :alerts_service_data do
    service { association(:alerts_service) }
    token { SecureRandom.hex }
  end
end