ahriman/tests/ahriman/web/test_routes.py
2021-08-11 01:55:27 +03:00

12 lines
260 B
Python

from aiohttp import web
from ahriman.web.routes import setup_routes
def test_setup_routes(application: web.Application) -> None:
"""
must generate non empty list of routes
"""
setup_routes(application)
assert application.router.routes()