Files
stacosys/tests/test_stacosys.py
T

9 lines
168 B
Python
Raw Normal View History

2021-07-17 11:42:04 +02:00
import unittest
2019-12-28 17:02:25 +01:00
from stacosys import __version__
2021-07-17 11:42:04 +02:00
class StacosysTestCase(unittest.TestCase):
def test_version(self):
2022-11-18 19:21:35 +01:00
self.assertEqual("3.3", __version__)