(loader, tests, pattern)
| 2850 | |
| 2851 | |
| 2852 | def load_tests(loader, tests, pattern): |
| 2853 | from doctest import DocFileSuite |
| 2854 | tests.addTest(DocFileSuite(os.path.join("mathdata", "ieee754.txt"))) |
| 2855 | return tests |
| 2856 | |
| 2857 | if __name__ == '__main__': |
| 2858 | unittest.main() |
nothing calls this directly
no test coverage detected
searching dependent graphs…