File size: 295 Bytes
231976d 8517064 231976d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
"""Test litbee."""
# pylint: disable=broad-except
from litbee import __version__, litbee
def test_version():
"""Test version."""
assert __version__[:3] == "0.1"
def test_sanity():
"""Check sanity."""
try:
assert not litbee()
except Exception:
assert True
|