You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
464 B
15 lines
464 B
# -*- coding: utf-8 -*-
|
|
# This file is under GNU Affero General Public License 3.0
|
|
# see LICENSE.txt
|
|
|
|
"""Unit test for pEp package, not for subpackages or modules."""
|
|
|
|
|
|
|
|
def test_pep_version():
|
|
""" Test that __version__ is not None or empty and is not 0.0.0."""
|
|
from pEp import __version__
|
|
# We could also test that match the regex, but that is already a test in
|
|
# setuptools_scm itself.
|
|
assert __version__
|
|
assert __version__ != "0.0.0"
|
|
|