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

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

FactoryBot.define do
  factory :project_alerting_setting, class: 'Alerting::ProjectAlertingSetting' do
    project
    token { 'access_token_123' }
  end
end