(self, got, want)
| 216 | ) |
| 217 | |
| 218 | def assert_record(self, got, want): |
| 219 | for spec, g, w in zip(self.schema, got, want): |
| 220 | if g is None and w is None: |
| 221 | continue |
| 222 | m = self.get_matcher(spec) |
| 223 | m(spec, g, w) |
| 224 | |
| 225 | def get_supported_types(self) -> set[type]: |
| 226 | dumpers = self.conn.adapters._dumpers[self.format] |