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

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

FactoryBot.define do
  factory :service_desk_custom_email_credential, class: '::ServiceDesk::CustomEmailCredential' do
    project
    smtp_address { "smtp.example.com" }
    smtp_username { "user@example.com" }
    smtp_port { 587 }
    smtp_password { "supersecret" }
  end
end