(self)
| 86 | with self.assertRaises(ValidationError): |
| 87 | _ConcreteKnowledge(source=_src()) # type: ignore[call-arg] |
| 88 | |
| 89 | def test_source_required(self): |
| 90 | with self.assertRaises(ValidationError): |
| 91 | _ConcreteKnowledge(as_of=_now()) # type: ignore[call-arg] |
| 92 | |
| 93 | def test_default_id_unique(self): |
nothing calls this directly
no test coverage detected