You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
797 B
31 lines
797 B
# -*- coding: utf-8 -*-
|
|
"""Factories to help in tests."""
|
|
from factory import PostGenerationMethodCall, Sequence
|
|
from factory.alchemy import SQLAlchemyModelFactory
|
|
|
|
from {{cookiecutter.app_name}}.database import db
|
|
from {{cookiecutter.app_name}}.user.models import User
|
|
|
|
|
|
class BaseFactory(SQLAlchemyModelFactory):
|
|
"""Base factory."""
|
|
|
|
class Meta:
|
|
"""Factory configuration."""
|
|
|
|
abstract = True
|
|
sqlalchemy_session = db.session
|
|
|
|
|
|
class UserFactory(BaseFactory):
|
|
"""User factory."""
|
|
|
|
username = Sequence(lambda n: "user{0}".format(n))
|
|
email = Sequence(lambda n: "user{0}@example.com".format(n))
|
|
password = PostGenerationMethodCall("set_password", "example")
|
|
active = True
|
|
|
|
class Meta:
|
|
"""Factory configuration."""
|
|
|
|
model = User
|
|
|