This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-03-12 20:47:22 +01:00
|
|
|
Fabricator(:user) do
|
|
|
|
account
|
2017-05-20 17:09:40 +02:00
|
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
2016-10-03 16:38:22 +02:00
|
|
|
password "123456789"
|
2018-10-08 04:50:11 +02: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
|