(tempdir, version)
| 756 | |
| 757 | |
| 758 | def test_feather_without_pandas(tempdir, version): |
| 759 | # ARROW-8345 |
| 760 | table = pa.table([pa.array([1, 2, 3])], names=['f0']) |
| 761 | path = str(tempdir / "data.feather") |
| 762 | _check_arrow_roundtrip(table, path) |
| 763 | |
| 764 | |
| 765 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected