1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-11 17:08:15 +00:00
trezor-firmware/core/tests/test_unittest.py
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()