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
Raw Normal View History

2019-02-16 21:53:45 +00:00
from aiohttp.test_utils import AioHTTPTestCase
from actioner.web import get_server
class BaseWebTestCase(AioHTTPTestCase):
async def get_application(self):
return get_server()