mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-05-03 20:05:10 +00:00
11 lines
220 B
Python
11 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__)
|