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