You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iTi-System/tests/test_modules.py

11 lines
276 B
Python

from __future__ import annotations
from iti_system import SystemModule, create_system_module
def test_create_system_module_returns_full_system_module():
module = create_system_module()
assert isinstance(module, SystemModule)
assert module.name == "iti_system"