Files
魏风 ef93d4e5c2
All checks were successful
Deploy to Production / deploy (push) Successful in 1m2s
feat: add location crud
2026-03-12 19:47:41 +08:00

17 lines
574 B
Python

from sqlmodel import Session
from app import crud
from app.models import Location, LocationCreate
from tests.utils.user import create_random_user
from tests.utils.utils import random_lower_string
def create_random_location(db: Session) -> Location:
user = create_random_user(db)
owner_id = user.id
assert owner_id is not None
title = random_lower_string()
description = random_lower_string()
location_in = LocationCreate(title=title, description=description)
return crud.create_location(session=db, location_in=location_in, owner_id=owner_id)