(self)
| 586 | |
| 587 | @pytest.mark.asyncio |
| 588 | async def test_async_wrapper(self) -> None: |
| 589 | original = indexing.LazilyIndexedArray(np.arange(10)) |
| 590 | wrapped = indexing.MemoryCachedArray(original) |
| 591 | await wrapped.async_get_duck_array() |
| 592 | assert_array_equal(wrapped, np.arange(10)) |
| 593 | assert isinstance(wrapped.array, indexing.NumpyIndexingAdapter) |
| 594 | |
| 595 | @pytest.mark.asyncio |
| 596 | async def test_async_sub_array(self) -> None: |
nothing calls this directly
no test coverage detected