()
| 979 | obj["nested"] = obj.copy() |
| 980 | |
| 981 | def prepare(): |
| 982 | G.clear() |
| 983 | table = pw.debug.table_from_rows( |
| 984 | TableSchema, |
| 985 | [(*(obj.values()), obj)], |
| 986 | ) |
| 987 | pw.io.jsonlines.write(table, tmp_path / "input.jsonl") |
| 988 | run() |
| 989 | |
| 990 | def read(): |
| 991 | G.clear() |
no test coverage detected