mirror of
https://github.com/evroon/bracket.git
synced 2026-01-19 11:38:53 -05:00
8 lines
233 B
Python
8 lines
233 B
Python
from bracket.sql.users import delete_user_and_owned_clubs
|
|
from bracket.utils.db_init import sql_create_dev_db
|
|
|
|
|
|
async def test_db_init() -> None:
|
|
user_id = await sql_create_dev_db()
|
|
await delete_user_and_owned_clubs(user_id)
|