This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-12 11:47:22 -08:00
|
|
|
Fabricator(:user) do
|
2022-01-27 15:46:42 -08:00
|
|
|
account { Fabricate.build(:account, user: nil) }
|
2017-05-20 08:09:40 -07:00
|
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
2023-02-18 14:38:14 -08:00
|
|
|
password '123456789'
|
2018-10-07 19:50:11 -07:00
|
|
|
confirmed_at { Time.zone.now }
|
2023-03-02 01:05:05 -08:00
|
|
|
current_sign_in_at { Time.zone.now }
|
|
|
|
agreement true
|
2016-03-12 11:47:22 -08:00
|
|
|
end
|