2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-07-24 12:55:43 +08:00
|
|
|
Fabricator(:skipped_email_log) do
|
|
|
|
to_address { sequence(:address) { |i| "blah#{i}@example.com" } }
|
|
|
|
email_type :invite
|
|
|
|
reason_type SkippedEmailLog.reason_types[:exceeded_emails_limit]
|
|
|
|
end
|