diskfloppy.me/spec/support/factories/user_factory.cr

7 lines
185 B
Crystal
Raw Normal View History

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