(self)
| 182 | self.check_encode_then_decode(doc_class=NotADict) |
| 183 | |
| 184 | def test_encode_then_decode_legacy(self): |
| 185 | self.check_encode_then_decode( |
| 186 | encoder=BSON.encode, decoder=lambda *args: BSON(args[0]).decode(*args[1:]) |
| 187 | ) |
| 188 | |
| 189 | def test_encode_then_decode_any_mapping_legacy(self): |
| 190 | self.check_encode_then_decode( |
nothing calls this directly
no test coverage detected