1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 14:30:31 +00:00
trezor-firmware/core/tests/test_unittest.py

13 lines
303 B
Python
Raw Normal View History

from common import * # isort:skip
2019-12-23 12:01:00 +00:00
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()