| 41 | |
| 42 | |
| 43 | class PackageExportTests(unittest.TestCase): |
| 44 | def test_top_level_imports(self): |
| 45 | from quantmind.configs import ( |
| 46 | BaseFlowCfg as BaseFlowCfgExport, |
| 47 | ) |
| 48 | from quantmind.configs import ( |
| 49 | BaseInput as BaseInputExport, |
| 50 | ) |
| 51 | from quantmind.configs import ( |
| 52 | EarningsFlowCfg, |
| 53 | NewsCollectionCfg, |
| 54 | PaperSemanticCfg, |
| 55 | ) |
| 56 | |
| 57 | self.assertTrue(issubclass(PaperSemanticCfg, BaseFlowCfgExport)) |
| 58 | self.assertTrue(issubclass(NewsCollectionCfg, BaseFlowCfgExport)) |
| 59 | self.assertTrue(issubclass(EarningsFlowCfg, BaseFlowCfgExport)) |
| 60 | self.assertEqual(BaseInputExport.__name__, "BaseInput") |
| 61 | |
| 62 | |
| 63 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected