()
| 988 | run() |
| 989 | |
| 990 | def read(): |
| 991 | G.clear() |
| 992 | table = pw.io.jsonlines.read( |
| 993 | tmp_path / "input.jsonl", schema=TableSchema, mode="static" |
| 994 | ) |
| 995 | expected = pw.debug.table_from_rows( |
| 996 | TableSchema, |
| 997 | [(*(obj.values()), obj)], |
| 998 | ) |
| 999 | assert_table_equality_wo_index(table, expected) |
| 1000 | |
| 1001 | prepare() |
| 1002 | read() |
no test coverage detected