()
| 258 | |
| 259 | |
| 260 | def test_inset_and_secondary(): |
| 261 | fig, ax = plt.subplots() |
| 262 | ax.inset_axes([.1, .1, .3, .3]) |
| 263 | ax.secondary_xaxis("top", functions=(np.square, np.sqrt)) |
| 264 | pickle.loads(pickle.dumps(fig)) |
| 265 | |
| 266 | |
| 267 | @pytest.mark.parametrize("cmap", cm._colormaps.values()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…