litbee / tests /test_litbee.py
freemt
first commit
231976d
raw
history blame
313 Bytes
"""Test litbee."""
# pylint: disable=broad-except
from litbee import __version__
from litbee import litbee
def test_version():
"""Test version."""
assert __version__[:3] == "0.1"
def test_sanity():
"""Check sanity."""
try:
assert not litbee()
except Exception:
assert True