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