(z)
| 126 | ): |
| 127 | # Covers introduction of a breaking change in the validation parameter (0.18) |
| 128 | def _not_empty(z): |
| 129 | return bool(z) |
| 130 | |
| 131 | class Person(Document): |
| 132 | name = StringField(validation=_not_empty) |
nothing calls this directly
no test coverage detected