(self)
| 3111 | assert arr.type.value_type.tz == "US/Eastern" |
| 3112 | |
| 3113 | def test_empty_arrays(self): |
| 3114 | for dtype_str, pa_type in self.type_pairs: |
| 3115 | if (Version(pd.__version__) >= Version("3.0.0") and |
| 3116 | pa_type == pa.string()): |
| 3117 | # PyArrow backed string dtype are set by default |
| 3118 | dtype_str = 'str' |
| 3119 | arr = np.array([], dtype=np.dtype(dtype_str)) |
| 3120 | _check_array_roundtrip(arr, type=pa_type) |
| 3121 | |
| 3122 | def test_non_threaded_conversion(self): |
| 3123 | _non_threaded_conversion() |
nothing calls this directly
no test coverage detected