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.
actioner/tests/test_web/__init__.py

9 lines
191 B
Python

from aiohttp.test_utils import AioHTTPTestCase
from actioner.web import get_server
class BaseWebTestCase(AioHTTPTestCase):
async def get_application(self):
return get_server()