مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
This adds a comprehensive set of tests for the message unqueueing service. Additionally, it improves how message databases are used for testing environments.
12 أسطر
209 B
Ruby
12 أسطر
209 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :smtp_endpoint do
|
|
server
|
|
name { "Example SMTP Endpoint" }
|
|
hostname { "example.com" }
|
|
ssl_mode { "None" }
|
|
port { 25 }
|
|
end
|
|
end
|