(tempdir)
| 3062 | |
| 3063 | @pytest.mark.parquet |
| 3064 | def test_open_dataset_from_fsspec(tempdir): |
| 3065 | table, path = _create_single_file(tempdir) |
| 3066 | |
| 3067 | fsspec = pytest.importorskip("fsspec") |
| 3068 | |
| 3069 | localfs = fsspec.filesystem("file") |
| 3070 | dataset = ds.dataset(path, filesystem=localfs) |
| 3071 | assert dataset.schema.equals(table.schema) |
| 3072 | |
| 3073 | |
| 3074 | @pytest.mark.parquet |
nothing calls this directly
no test coverage detected