(path: Path)
| 1273 | |
| 1274 | |
| 1275 | def generate_jsonlines(path: Path): |
| 1276 | with open(path, "w") as f: |
| 1277 | f.write( |
| 1278 | """{"a": 1, "b": 2, "c": 3} |
| 1279 | {"a": 2, "b": "x", "c": 3} |
| 1280 | {"a": 1, "b": 3, "c": "y"} |
| 1281 | {"a": 6, "b": "1", "c": "t"} |
| 1282 | {"a": 7, "b": 1, "c": null} |
| 1283 | """ |
| 1284 | ) |
| 1285 | |
| 1286 | |
| 1287 | def test_csv_reading(tmp_path): |
no test coverage detected