halfapi/tests/test_halfapi.py

8 lines
221 B
Python
Raw Normal View History

2021-11-30 10:42:00 +01:00
from halfapi.halfapi import HalfAPI
def test_methods():
assert 'application' in dir(HalfAPI)
assert 'version' in dir(HalfAPI)
assert 'version_async' in dir(HalfAPI)
2022-04-19 16:08:20 +02:00
assert 'connect_redis' in dir(HalfAPI)