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