MCPcopy Create free account
hub / github.com/LLMQuant/quant-mind / PackageExportTests

Class PackageExportTests

tests/configs/test_base.py:43–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41
42
43class 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
63if __name__ == "__main__":

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected