mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
14 lines
290 B
Python
14 lines
290 B
Python
|
from common import *
|
||
|
|
||
|
|
||
|
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()
|