nostrclient/tests/test_init.py
dni ⚡ a8eb139360
feat: code quality (#31)
* feat: code quality
2024-08-30 13:07:33 +02:00

11 lines
241 B
Python

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