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