
related: #4882 Change-Id: I605de7fd43be146c84f4324d2a8eebe0aa11da79 Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/34814 Tested-by: Jenkins Automated Tests <pedersen+jenkins@frm2.tum.de> Tested-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de> Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de> Reviewed-by: Markus Zolliker <markus.zolliker@psi.ch>
15 lines
219 B
Python
15 lines
219 B
Python
|
|
from frappy.gui.cfg_editor.utils import get_modules
|
|
|
|
def test_assert():
|
|
assert 1
|
|
|
|
|
|
def test_constants(constants):
|
|
assert constants.ONE == 1
|
|
assert constants.TWO == 2
|
|
|
|
|
|
def test_imports():
|
|
get_modules()
|