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