12 lines
452 B
Python
12 lines
452 B
Python
|
from backend.src.db import DbSession
|
||
|
from src.schemas import Session
|
||
|
from fastapi import FastAPI
|
||
|
from src.db import DbSession
|
||
|
from fastapi.testclient import TestClient
|
||
|
|
||
|
#----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
def test_session_create(app: FastAPI, db_session: DbSession, client: TestClient):
|
||
|
pass
|