aboutsummaryrefslogtreecommitdiff
path: root/spec/support/factories/user_factory.cr
blob: bb837ee14e599e5e248d50f6c09ffd51b7895495 (plain)
1
2
3
4
5
6
class UserFactory < Avram::Factory
  def initialize
    email "#{sequence("test-email")}@example.com"
    encrypted_password Authentic.generate_encrypted_password("password")
  end
end