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