Loading repository data…
Loading repository data…
kuzxnia / repository
factory_boy extension with asynchronous ORM support
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
factory_boy <https://github.com/FactoryBoy/factory_boy>__ extension
with asynchronous ORM support
Install using pip
::
pip install async_factory_boy
async_factory_boy integrate with Object Relational Mapping (ORM) through
subclass of factory.Factory. All supported are listed below.
async_factory_boy.factory.sqlalchemy.AsyncSQLAlchemyFactory.. code:: python
from async_factory_boy.factory.sqlalchemy import AsyncSQLAlchemyFactory
class TestModelFactory(AsyncSQLAlchemyFactory): class Meta: model = TestModel session = session
name = Faker("name")
created_at = Faker("date_time")
async_factory_boy.factory.tortoise.AsyncTortoiseFactory.. code:: python
from async_factory_boy.factory.tortoise import AsyncTortoiseFactory
class TestModelFactory(AsyncTortoiseFactory): class Meta: model = TestModel
name = Faker("name")
created_at = Faker("date_time")
and factory usage
.. code:: python
test = await TestModelFactory.create() test = await TestModelFactory.build()
For test configuration examples check tests/ directory.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^