test(core): add unit tests for version constants

This commit is contained in:
Abhimanyu Saharan
2026-02-12 18:34:18 +00:00
parent afc8de3c24
commit c4d49d6a42

View File

@@ -0,0 +1,11 @@
from app.core.version import APP_NAME, APP_VERSION
def test_app_name_constant() -> None:
assert APP_NAME == "mission-control"
def test_app_version_semver_format() -> None:
parts = APP_VERSION.split(".")
assert len(parts) == 3
assert all(part.isdigit() for part in parts)