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

Class BaseInputTests

tests/configs/test_base.py:34–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32
33
34class BaseInputTests(unittest.TestCase):
35 def test_extra_forbidden(self):
36 class _SampleInput(BaseInput):
37 x: int
38
39 with self.assertRaises(ValidationError):
40 _SampleInput(x=1, y=2) # type: ignore[call-arg]
41
42
43class PackageExportTests(unittest.TestCase):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected