| 18 | |
| 19 | |
| 20 | class NewDocumentPickleTest(Document): |
| 21 | number = IntField() |
| 22 | string = StringField(choices=(("One", "1"), ("Two", "2"))) |
| 23 | embedded = EmbeddedDocumentField(PickleEmbedded) |
| 24 | lists = ListField(StringField()) |
| 25 | photo = FileField() |
| 26 | new_field = StringField() |
| 27 | |
| 28 | |
| 29 | class PickleDynamicEmbedded(DynamicEmbeddedDocument): |
nothing calls this directly
no test coverage detected