mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
12 lines
260 B
Python
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()
|