events/tests/test_init.py
dni ⚡ 400b39211d
feat: code quality (#34)
* feat: code quality
2024-08-29 12:18:49 +02:00

11 lines
231 B
Python

import pytest
from fastapi import APIRouter
from .. import events_ext
# just import router and add it to a test router
@pytest.mark.asyncio
async def test_router():
router = APIRouter()
router.include_router(events_ext)