(loader, tests, pattern)
| 2943 | |
| 2944 | |
| 2945 | def load_tests(loader, tests, pattern): |
| 2946 | from doctest import DocFileSuite |
| 2947 | tests.addTest(DocFileSuite(os.path.join("mathdata", "ieee754.txt"))) |
| 2948 | return tests |
| 2949 | |
| 2950 | if __name__ == '__main__': |
| 2951 | unittest.main() |
nothing calls this directly
no test coverage detected