1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00
Files
blag/tests/test_version.py
2023-09-20 15:09:28 +02:00

13 lines
243 B
Python

"""Test the version module."""
# remove when we don't support py38 anymore
from __future__ import annotations
import blag
def test_version() -> None:
"""Test the version of the package."""
assert isinstance(blag.__VERSION__, str)