2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-11-15 10:27:43 -05:00
|
|
|
Fabricator(:email_log) do
|
2013-03-17 15:08:38 -04:00
|
|
|
user
|
|
|
|
to_address { sequence(:address) { |i| "blah#{i}@example.com" } }
|
|
|
|
email_type :invite
|
2013-05-23 22:48:32 -04:00
|
|
|
end
|