(loader, tests, pattern)
| 198 | __test__ = {'doctests' : doctests} |
| 199 | |
| 200 | def load_tests(loader, tests, pattern): |
| 201 | from test.support.rustpython import DocTestChecker # TODO: RUSTPYTHON |
| 202 | tests.addTest(doctest.DocTestSuite(checker=DocTestChecker())) # XXX: RUSTPYTHON |
| 203 | return tests |
| 204 | |
| 205 | |
| 206 | class TestCornerCases(unittest.TestCase): |
nothing calls this directly
no test coverage detected