(self)
| 3048 | _check_pandas_roundtrip(df) |
| 3049 | |
| 3050 | def test_empty_arrays(self): |
| 3051 | for dtype_str, pa_type in self.type_pairs: |
| 3052 | if (Version(pd.__version__) >= Version("3.0.0") and |
| 3053 | pa_type == pa.string()): |
| 3054 | # PyArrow backed string dtype are set by default |
| 3055 | dtype_str = 'str' |
| 3056 | arr = np.array([], dtype=np.dtype(dtype_str)) |
| 3057 | _check_array_roundtrip(arr, type=pa_type) |
| 3058 | |
| 3059 | def test_non_threaded_conversion(self): |
| 3060 | _non_threaded_conversion() |
nothing calls this directly
no test coverage detected