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