Files
disknext/tests/test_database.py
2025-06-22 19:26:23 +08:00

8 lines
184 B
Python

from models import database
import pytest
@pytest.mark.asyncio
async def test_initialize_db():
"""Fixture to initialize the database before tests."""
await database.init_db()