(self)
| 6 | |
| 7 | class TestDiagnose(unittest.TestCase): |
| 8 | def testPythonImportCheck(self): |
| 9 | # This a python stdlib module that definitely exists |
| 10 | self.assertTrue(diagnose.check_python_import("os")) |
| 11 | # I sincerly hope nobody will ever create a package with that name |
| 12 | self.assertFalse(diagnose.check_python_import("nonexistant_package")) |
nothing calls this directly
no outgoing calls
no test coverage detected