(
figsize: tuple[float, float] | None, size: float | None, aspect: float | None
)
| 3343 | ], |
| 3344 | ) |
| 3345 | def test_get_axis_cartopy( |
| 3346 | figsize: tuple[float, float] | None, size: float | None, aspect: float | None |
| 3347 | ) -> None: |
| 3348 | kwargs = {"projection": cartopy.crs.PlateCarree()} |
| 3349 | with figure_context(): |
| 3350 | out_ax = get_axis(figsize=figsize, size=size, aspect=aspect, **kwargs) |
| 3351 | assert isinstance(out_ax, cartopy.mpl.geoaxes.GeoAxesSubplot) |
| 3352 | |
| 3353 | |
| 3354 | @requires_matplotlib |
nothing calls this directly
no test coverage detected
searching dependent graphs…