2020-12-29 14:37:37 +01:00
|
|
|
"""Fixtures for testing the ORM layer with fake data."""
|
|
|
|
|
2021-01-03 19:33:36 +01:00
|
|
|
from tests.db.fake_data.fixture_makers import make_address
|
|
|
|
from tests.db.fake_data.fixture_makers import make_courier
|
|
|
|
from tests.db.fake_data.fixture_makers import make_customer
|
|
|
|
from tests.db.fake_data.fixture_makers import make_order
|
|
|
|
from tests.db.fake_data.fixture_makers import make_restaurant
|
|
|
|
from tests.db.fake_data.static_fixtures import address
|
|
|
|
from tests.db.fake_data.static_fixtures import city
|
|
|
|
from tests.db.fake_data.static_fixtures import city_data
|
|
|
|
from tests.db.fake_data.static_fixtures import courier
|
|
|
|
from tests.db.fake_data.static_fixtures import customer
|
|
|
|
from tests.db.fake_data.static_fixtures import grid
|
|
|
|
from tests.db.fake_data.static_fixtures import order
|
|
|
|
from tests.db.fake_data.static_fixtures import pixel
|
|
|
|
from tests.db.fake_data.static_fixtures import restaurant
|