This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
catfish/tests/test_router/test_router.py

8 lines
222 B
Python

from tests import BaseRouterTestCase
class RouterTestCase(BaseRouterTestCase):
async def test_accessible(self):
response = await self.client.request("GET", "/")
self.assertEqual(response.status, 200)