(self, unit)
| 19 | |
| 20 | @pytest.fixture |
| 21 | def tda(self, unit): |
| 22 | arr = np.arange(5, dtype=np.int64).view(f"m8[{unit}]") |
| 23 | return TimedeltaArray._simple_new(arr, dtype=arr.dtype) |
| 24 | |
| 25 | def test_non_nano(self, unit): |
| 26 | arr = np.arange(5, dtype=np.int64).view(f"m8[{unit}]") |
nothing calls this directly
no test coverage detected