blob: e957790fba70072f64939bda1002bd36c16e5c28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: BSD-2-Clause
"""Basic test for file importing."""
from __future__ import annotations
import typing
from packaging import version as pkg_version
from perl_weekly_285 import defs
if typing.TYPE_CHECKING:
from typing import Final
def test_version() -> None:
"""Make sure the `VERSION` variable has a sane value."""
version: Final = pkg_version.Version(defs.VERSION)
assert version > pkg_version.Version("0")
|