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

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

FactoryBot.define do
  factory :service_desk_custom_email_verification, class: '::ServiceDesk::CustomEmailVerification' do
    state { 'started' }
    token { 'XXXXXXXXXXXX' }
    project
    triggerer factory: :user
    triggered_at { Time.current }
  end
end