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.
2016-03-12 11:47:22 -08:00
|
|
|
Fabricator(:user) do
|
|
|
|
account
|
2017-05-20 08:09:40 -07:00
|
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
2016-10-03 07:38:22 -07:00
|
|
|
password "123456789"
|
2018-10-07 19:50:11 -07:00
|
|
|
confirmed_at { Time.zone.now }
|
2018-12-24 10:12:38 -08:00
|
|
|
agreement true
|
2016-03-12 11:47:22 -08:00
|
|
|
end
|