(loader, tests, pattern)
| 3854 | |
| 3855 | |
| 3856 | def load_tests(loader, tests, pattern): |
| 3857 | tests.addTest(doctest.DocTestSuite(doctest)) |
| 3858 | from test.support.rustpython import DocTestChecker # TODO: RUSTPYTHON |
| 3859 | tests.addTest(doctest.DocTestSuite(checker=DocTestChecker())) # TODO: RUSTPYTHON |
| 3860 | return tests |
| 3861 | |
| 3862 | |
| 3863 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected