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