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