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