mirror of
https://git.hiabuto.net/C3MA/CCMA.git
synced 2026-07-01 19:26:53 +02:00
9 lines
261 B
Python
9 lines
261 B
Python
from pathlib import Path
|
|
|
|
from ccma import __version__
|
|
|
|
|
|
def test_ui_version_matches_version_file() -> None:
|
|
expected = (Path(__file__).resolve().parents[1] / "VERSION").read_text(encoding="utf-8").strip()
|
|
assert __version__ == expected == "0.0.1-dev1"
|