mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-11 17:08:15 +00:00
345eaf79f9
[no changelog]
14 lines
329 B
Python
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()
|