2016-03-12 19:47:22 +00:00
|
|
|
Fabricator(:user) do
|
|
|
|
account
|
2017-05-20 15:09:40 +00:00
|
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
2016-10-03 14:38:22 +00:00
|
|
|
password "123456789"
|
|
|
|
confirmed_at { Time.now }
|
2016-03-12 19:47:22 +00:00
|
|
|
end
|