(tempdir, version)
| 749 | |
| 750 | |
| 751 | def test_feather_without_pandas(tempdir, version): |
| 752 | # ARROW-8345 |
| 753 | table = pa.table([pa.array([1, 2, 3])], names=['f0']) |
| 754 | path = str(tempdir / "data.feather") |
| 755 | _check_arrow_roundtrip(table, path) |
| 756 | |
| 757 | |
| 758 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected