micropython-lib/unix-ffi/unittest/test_unittest_isolated.py

16 wiersze
278 B
Python

import unittest
global_context = None
class TestUnittestIsolated(unittest.TestCase):
def test_NotChangedByOtherTest(self):
global global_context
assert global_context is None
global_context = True
if __name__ == "__main__":
unittest.main()