(loader, tests, pattern)
| 705 | import unittest |
| 706 | |
| 707 | def load_tests(loader, tests, pattern): |
| 708 | tests.addTest(doctest.DocTestSuite()) |
| 709 | return tests |
| 710 | |
| 711 | |
| 712 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected
searching dependent graphs…