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