(s3_example_s3fs, )
| 471 | |
| 472 | @pytest.mark.s3 |
| 473 | def test_read_s3fs(s3_example_s3fs, ): |
| 474 | fs, path = s3_example_s3fs |
| 475 | path = path + "/test.parquet" |
| 476 | table = pa.table({"a": [1, 2, 3]}) |
| 477 | _write_table(table, path, filesystem=fs) |
| 478 | |
| 479 | result = _read_table(path, filesystem=fs) |
| 480 | assert result.equals(table) |
| 481 | |
| 482 | |
| 483 | @pytest.mark.s3 |
nothing calls this directly
no test coverage detected