summaryrefslogtreecommitdiff
path: root/spec/factories/service_desk/custom_email_credential.rb
blob: da131dd825001a98ff7ae241d7589cebeb0d397b (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 { "text@example.com" }
    smtp_port { 587 }
    smtp_password { "supersecret" }
  end
end