This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-04-17 03:14:25 +02:00
|
|
|
Fabricator(:canonical_email_block) do
|
2023-05-22 15:27:35 +02:00
|
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
2023-06-10 18:29:01 +02:00
|
|
|
reference_account { Fabricate.build(:account) }
|
2021-04-17 03:14:25 +02:00
|
|
|
end
|