2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-26 14:47:36 -04:00
|
|
|
Fabricator(:user_email) do
|
|
|
|
email { sequence(:email) { |i| "bruce#{i}@wayne.com" } }
|
|
|
|
primary true
|
|
|
|
end
|
2017-07-31 18:27:29 -04:00
|
|
|
|
2018-07-03 07:51:22 -04:00
|
|
|
Fabricator(:secondary_email, from: :user_email) do
|
2017-07-31 18:27:29 -04:00
|
|
|
email { sequence(:email) { |i| "bwayne#{i}@wayne.com" } }
|
|
|
|
primary false
|
|
|
|
end
|