(self)
| 1238 | def test_doc_in_invalid_document_error_as_property_mapping(self): |
| 1239 | class MyMapping(abc.Mapping): |
| 1240 | def keys(self): |
| 1241 | return ["t"] |
| 1242 | |
| 1243 | def __getitem__(self, name): |
| 1244 | if name == "_id": |
no outgoing calls
no test coverage detected