mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 05:18:06 +01:00
6 lines
266 B
Ruby
6 lines
266 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:canonical_email_block) do
|
|
email { |attrs| attrs[:reference_account] ? attrs[:reference_account].user_email : sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
|
reference_account { Fabricate.build(:account) }
|
|
end
|