mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 12:42:41 +00:00
9 lines
162 B
Python
9 lines
162 B
Python
"""Test the version module."""
|
|
|
|
import blag
|
|
|
|
|
|
def test_version() -> None:
|
|
"""Test the version of the package."""
|
|
assert isinstance(blag.__VERSION__, str)
|