(tempdir)
| 493 | |
| 494 | @pytest.mark.pandas |
| 495 | def test_read_single_file_list(tempdir): |
| 496 | data_path = str(tempdir / 'data.parquet') |
| 497 | |
| 498 | table = pa.table({"a": [1, 2, 3]}) |
| 499 | _write_table(table, data_path) |
| 500 | |
| 501 | result = pq.ParquetDataset([data_path]).read() |
| 502 | assert result.equals(table) |
| 503 | |
| 504 | |
| 505 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected