PATH:
opt
/
bitninja-python-dojo
/
embedded
/
lib
/
python3.9
/
unittest
/
test
/
testmock
import os import unittest def load_tests(loader, standard_tests, pattern): # top level directory cached on loader instance this_dir = os.path.dirname(__file__) pattern = pattern or "test*.py" # We are inside unittest.test.testmock, so the top-level is three notches up top_level_dir = os.path.dirname(os.path.dirname(os.path.dirname(this_dir))) package_tests = loader.discover(start_dir=this_dir, pattern=pattern, top_level_dir=top_level_dir) standard_tests.addTests(package_tests) return standard_tests if __name__ == '__main__': unittest.main()
[-] testwith.py
[edit]
[-] testasync.py
[edit]
[-] testmock.py
[edit]
[-] testsentinel.py
[edit]
[+]
..
[-] testmagicmethods.py
[edit]
[-] testhelpers.py
[edit]
[-] __main__.py
[edit]
[-] support.py
[edit]
[-] testcallable.py
[edit]
[+]
__pycache__
[-] testsealable.py
[edit]
[-] testpatch.py
[edit]
[-] __init__.py
[edit]