(draggable)
| 1284 | |
| 1285 | @pytest.mark.parametrize('draggable', (True, False)) |
| 1286 | def test_legend_draggable(draggable): |
| 1287 | fig, ax = plt.subplots() |
| 1288 | ax.plot(range(10), label='shabnams') |
| 1289 | leg = ax.legend(draggable=draggable) |
| 1290 | assert leg.get_draggable() is draggable |
| 1291 | |
| 1292 | |
| 1293 | def test_alpha_handles(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…