| 556 | with pytest.raises(ValueError): |
| 557 | |
| 558 | class EvilHuman(Human): |
| 559 | evil = BooleanField(default=True) |
| 560 | meta = {"abstract": True} |
| 561 | |
| 562 | def test_abstract_embedded_documents(self): |
| 563 | # 789: EmbeddedDocument shouldn't inherit abstract |
nothing calls this directly
no test coverage detected