Method
assertExportedCsv
( # noqa: B027
self,
items: Iterable[Any],
header: Iterable[str],
rows: Iterable[dict[str, Any]],
settings: dict[str, Any] | None = None,
)
Source from the content-addressed store, hash-verified
| 185 | await self.assertExportedMultiple(items, rows, settings) |
| 186 | |
| 187 | async def assertExportedCsv( # noqa: B027 |
| 188 | self, |
| 189 | items: Iterable[Any], |
| 190 | header: Iterable[str], |
| 191 | rows: Iterable[dict[str, Any]], |
| 192 | settings: dict[str, Any] | None = None, |
| 193 | ) -> None: |
| 194 | pass |
| 195 | |
| 196 | async def assertExportedJsonLines( # noqa: B027 |
| 197 | self, |
Tested by
no test coverage detected