2016-03-12 20:47:22 +01:00
|
|
|
Fabricator(:user) do
|
2022-01-28 00:46:42 +01:00
|
|
|
account { Fabricate.build(:account, user: nil) }
|
2017-05-20 17:09:40 +02:00
|
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
2023-02-18 17:38:14 -05:00
|
|
|
password '123456789'
|
2018-10-08 13:50:11 +11:00
|
|
|
confirmed_at { Time.zone.now }
|
2018-12-24 19:12:38 +01:00
|
|
|
agreement true
|
2016-03-12 20:47:22 +01:00
|
|
|
end
|