wah.moe/spec/support/factories/user_factory.cr

7 lines
185 B
Crystal
Raw Normal View History

2024-09-13 12:58:12 +01:00
class UserFactory < Avram::Factory
def initialize
email "#{sequence("test-email")}@example.com"
encrypted_password Authentic.generate_encrypted_password("password")
end
end