2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-07-24 00:55:43 -04: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
|