(plotting_backend)
| 133 | |
| 134 | |
| 135 | def test_pandas_plot_reuse_plot_dropped(plotting_backend): |
| 136 | df = pd.DataFrame([0, 1, 2]) |
| 137 | with patch('hvplot.plotting.hvPlotTabular.__call__') as hvcall: |
| 138 | df.plot.line(reuse_plot=True) |
| 139 | hvcall.assert_called_with(kind='line') |
| 140 | |
| 141 | |
| 142 | def test_pandas_plot_sharexy_handled(plotting_backend): |