mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
10 lines
220 B
Python
10 lines
220 B
Python
# SPDX-License-Identifier: 0BSD
|
|
|
|
import re
|
|
|
|
import meshchatx
|
|
|
|
|
|
def test_meshchatx_version_is_semver_like():
|
|
assert isinstance(meshchatx.__version__, str)
|
|
assert re.match(r"^\d+\.\d+\.\d+", meshchatx.__version__)
|