Notfellchen/src/fellchensammlung/baker_recipes.py

27 lines
428 B
Python

from model_bakery.recipe import Recipe, seq
from fellchensammlung.models import *
location = Recipe(
Location,
place_id=seq(''),
name=seq('Location_'),
longitude=seq(""),
latitude=seq(""),
)
rescue_org = Recipe(
RescueOrganization,
name=seq('Rattennothilfe_'),
location=location.make()
)
rat = Recipe(
Animal,
name=seq('Ratte_'),
)
cat = Recipe(
Animal,
name=seq('Katze_'),
)