Skip to content
Snippets Groups Projects
Forked from pycodegen / lbmpy
96 commits behind, 1 commit ahead of the upstream repository.
test_version_string.py 270 B
import lbmpy


def test_version_string():
    version = lbmpy.__version__
    print(version)

    numeric_version = [int(x, 10) for x in version.split('.')[0:1]]
    test_version = sum(x * (100 ** i) for i, x in enumerate(numeric_version))

    assert test_version >= 1