(self)
| 60 | SourceRef(kind="ftp") # type: ignore[arg-type] |
| 61 | |
| 62 | def test_extra_forbidden(self): |
| 63 | with self.assertRaises(ValidationError): |
| 64 | SourceRef(kind="manual", garbage=1) # type: ignore[call-arg] |
| 65 | |
| 66 | |
| 67 | class ExtractionRefTests(unittest.TestCase): |