(self)
| 282 | assert split_csv(first) == split_csv(second), msg |
| 283 | |
| 284 | def _check_output(self): |
| 285 | self.output.seek(0) |
| 286 | self.assertCsvEqual( |
| 287 | to_unicode(self.output.read()), "age,name\r\n22,John\xa3\r\n" |
| 288 | ) |
| 289 | |
| 290 | def assertExportResult(self, item, expected, **kwargs): |
| 291 | fp = BytesIO() |
nothing calls this directly
no test coverage detected