Alexander Hess
f996376b13
- add Grid, Pixel, and AddressPixelAssociation ORM models - each Grid belongs to a City an is characterized by the side_length of all the square Pixels contained in it - Pixels aggregate Addresses => many-to-many relationship (that is modeled with SQLAlchemy's Association Pattern to implement a couple of constraints)
16 lines
846 B
Python
16 lines
846 B
Python
"""Fixtures for testing the ORM layer with fake data."""
|
|
|
|
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
|