mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +00:00
7 lines
191 B
Ruby
7 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:canonical_email_block) do
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
|
reference_account { Fabricate.build(:account) }
|
|
end
|