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"
|
|
|
|
confirmed_at { Time.now }
|
2016-03-12 20:47:22 +01:00
|
|
|
end
|