(self)
| 219 | assert "<xarray.Dataset>" in text |
| 220 | |
| 221 | def test_display_style_html(self) -> None: |
| 222 | ds = create_test_dataset_attrs() |
| 223 | with xarray.set_options(display_style="html"): |
| 224 | html = ds._repr_html_() |
| 225 | assert html.startswith("<div>") |
| 226 | assert "'nested'" in html |
| 227 | |
| 228 | def test_display_dataarray_style_text(self) -> None: |
| 229 | da = create_test_dataarray_attrs() |
nothing calls this directly
no test coverage detected