| 32 | |
| 33 | |
| 34 | class 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 | |
| 43 | class PackageExportTests(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected