diff --git a/tests/test_import.py b/tests/test_import.py new file mode 100644 index 0000000..11a766d --- /dev/null +++ b/tests/test_import.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: 2025 KUNBUS GmbH +# SPDX-License-Identifier: GPL-2.0-or-later +"""Test module import.""" + +import unittest + + +class ModuleImport(unittest.TestCase): + def test_import(self): + """Test the import of the module.""" + import revpi_middleware + + self.assertEqual(type(revpi_middleware.__version__), str)