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