halfapi/tests/test_halfapi.py
2021-11-30 10:42:00 +01:00

8 lines
214 B
Python

from halfapi.halfapi import HalfAPI
def test_methods():
assert 'application' in dir(HalfAPI)
assert 'routes' in dir(HalfAPI)
assert 'version' in dir(HalfAPI)
assert 'version_async' in dir(HalfAPI)