Files
trezor-firmware/core/tests/test_unittest.py
Ondřej Vejpustek 345eaf79f9 style(core/tests): silent star import warnings
[no changelog]
2024-12-06 16:14:54 +01:00

14 lines
329 B
Python

# flake8: noqa: F403,F405
from common import * # isort:skip
class TestUnittest(unittest.TestCase):
def test_debug(self):
if not __debug__:
# Fail the test if debug is turned off, because `assert` is not executed then.
self.assertTrue(False)
if __name__ == "__main__":
unittest.main()