(dask_dataarray: xr.DataArray)
| 122 | |
| 123 | |
| 124 | def test_short_data_repr_html_dask(dask_dataarray: xr.DataArray) -> None: |
| 125 | assert hasattr(dask_dataarray.data, "_repr_html_") |
| 126 | data_repr = fh.short_data_repr_html(dask_dataarray) |
| 127 | assert data_repr == dask_dataarray.data._repr_html_() |
| 128 | |
| 129 | |
| 130 | def test_format_dims_no_dims() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…