9 lines
215 B
Python
9 lines
215 B
Python
from __future__ import annotations
|
|
|
|
from audiobooksorter import constants
|
|
|
|
|
|
def test_constants_exposed() -> None:
|
|
assert constants.PACKAGE_NAME == "audiobooksorter"
|
|
assert constants.SUPPORTED_VERSION == "1"
|