about summary refs log tree commit diff
path: root/spec/fabricators/user_fabricator.rb
blob: 7dfbdb52d77df84390d32c1ccc0b647f975b4002 (plain) (blame)
1
2
3
4
5
6
Fabricator(:user) do
  account
  email        { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
  password     "123456789"
  confirmed_at { Time.zone.now }
end